setMaxHeight method

Future<void> setMaxHeight(
  1. int height
)

Implementation

Future<void> setMaxHeight(int height) async {
  _config = _config.copyWith(maxHeight: height);
  final int? id = _playerId;
  if (id != null) await UMediaChannel.call<void>(id, "setMaxHeight", <String, Object?>{"height": height});
}