syncConfig method
Synchronize configuration from native platform
Implementation
@override
Future<APMFlutterConfig> syncConfig() async {
final config = APMFlutterConfig();
final configMap = await methodChannel.invokeMethod<Map>(
'syncConfigChannel',
);
if (configMap != null) {
config.resetWithBuiltinConfig(configMap);
}
return config;
}