getCodes method
Implementation
Future<List<Code>> getCodes(String sdkId, List<String> codeIds) async {
final res = await _methodChannel.invokeMethod<String>(
'CodeApi.getCodes',
{
"sdkId": sdkId,
"codeIds": jsonEncode(codeIds.map((x0) => x0).toList()),
}
);
if (res == null) throw AssertionError("received null result from platform method getCodes");
final parsedResJson = jsonDecode(res);
return (parsedResJson as List<dynamic>).map((x1) => Code.fromJSON(x1) ).toList();
}