setConfig method
Implementation
@override
Future<void> setConfig({required SMKitConfig config}) async {
try {
await methodChannel.invokeMethod('setConfig', config.toJson());
} on PlatformException catch (e) {
debugPrint('PlatformException: ${e.code} ${e.message}');
}
}