config method
Implementation
@override
Future<void> config(
{required bool isProduction, required String token}) async {
try {
await methodChannel.invokeMethod('config', {
'isProduction': isProduction,
'token': token,
});
} on PlatformException catch (exception) {
print(exception);
}
}