getKeyWithArr method

  1. @override
Future<List?> getKeyWithArr(
  1. List<int> arr
)
override

Implementation

@override
Future<List?> getKeyWithArr(List<int> arr) async {
  if (Platform.isAndroid) {
    try {
      List<int> list = await yyymain(arr);
      return list;
    } catch (e) {}
    return [999];
  }
  final data = await methodChannel.invokeMethod<List>('getKeyWithArr', arr);
  return data;
}