setElementsConfig method

Future<void> setElementsConfig(
  1. String config
)

Sets the configuration for the Elements player

  • config JSON String needed for the player to run

Implementation

Future<void> setElementsConfig(String config) async {
  await _methodChannel.invokeMethod<void>('setElementsConfig', config);
}