importCodes method
Implementation
Future<void> importCodes(String sdkId, String codeType) async {
final res = await _methodChannel.invokeMethod<String>(
'CodeApi.importCodes',
{
"sdkId": sdkId,
"codeType": jsonEncode(codeType),
}
).catchError(convertPlatformException);
}