newMediaMixer method

  1. @override
Future<int?> newMediaMixer(
  1. dynamic options
)
override

Creates a new MediaMixer platform instance.

Implementation

@override
Future<int?> newMediaMixer(MediaMixerOptions options) async {
  return await channel.invokeMethod<int?>(
      'newMediaMixer', {'value': convert.json.encode(options.toJson())});
}