setMaxHeight method
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});
}