updateConfig method
The SDK will attempt to change the client config
,
will call warning/error listener respectively.
Implementation
@override
Future<void> updateConfig(MoveConfig config) async {
await methodChannel.invokeMethod(
'updateConfig',
<String, dynamic>{
'config': config.buildConfigParameter(),
},
);
}