setPlayspaceConfig method

Future<void> setPlayspaceConfig(
  1. String config
)

Sets the configuration for the Playspace player

  • config JSON String needed for the player to run

Implementation

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