getConfig method

Future<PlayerConfig> getConfig()

Implementation

Future<PlayerConfig> getConfig() async {
  final Map<dynamic, dynamic>? result = await _channel.invokeMethod(
    'getConfig',
  );
  return PlayerConfig._fromMap(result!);
}