setStyleTerrainProperty method

Future<void> setStyleTerrainProperty(
  1. String property,
  2. Object value
)

Sets a value to the the style terrain property.

@param property The style terrain property name. @param value The style terrain property value.

@return A string describing an error if the operation was not successful, empty otherwise.

Implementation

Future<void> setStyleTerrainProperty(String property, Object value) async {
  final String pigeonVar_channelName =
      'dev.flutter.pigeon.mapbox_maps_flutter.StyleManager.setStyleTerrainProperty$pigeonVar_messageChannelSuffix';
  final BasicMessageChannel<Object?> pigeonVar_channel =
      BasicMessageChannel<Object?>(
    pigeonVar_channelName,
    pigeonChannelCodec,
    binaryMessenger: pigeonVar_binaryMessenger,
  );
  final List<Object?>? pigeonVar_replyList = await pigeonVar_channel
      .send(<Object?>[property, value]) as List<Object?>?;
  if (pigeonVar_replyList == null) {
    throw _createConnectionError(pigeonVar_channelName);
  } else if (pigeonVar_replyList.length > 1) {
    throw PlatformException(
      code: pigeonVar_replyList[0]! as String,
      message: pigeonVar_replyList[1] as String?,
      details: pigeonVar_replyList[2],
    );
  } else {
    return;
  }
}