updateStyleImageSourceImage method Null safety

Future<void> updateStyleImageSourceImage(
  1. String arg_sourceId,
  2. MbxImage arg_image
)

Implementation

Future<void> updateStyleImageSourceImage(
    String arg_sourceId, MbxImage arg_image) async {
  final BasicMessageChannel<Object?> channel = BasicMessageChannel<Object?>(
      'dev.flutter.pigeon.StyleManager.updateStyleImageSourceImage', codec,
      binaryMessenger: _binaryMessenger);
  final Map<Object?, Object?>? replyMap = await channel
      .send(<Object?>[arg_sourceId, arg_image]) as Map<Object?, Object?>?;
  if (replyMap == null) {
    throw PlatformException(
      code: 'channel-error',
      message: 'Unable to establish connection on channel.',
    );
  } else if (replyMap['error'] != null) {
    final Map<Object?, Object?> error =
        (replyMap['error'] as Map<Object?, Object?>?)!;
    throw PlatformException(
      code: (error['code'] as String?)!,
      message: error['message'] as String?,
      details: error['details'],
    );
  } else {
    return;
  }
}