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