getNotification property

Future<List<int>> getNotification

Implementation

Future<List<int>> get getNotification async {
  String str = await mConnMethodChannel.invokeMethod('getNotification');
  List<int> list = str.split(",").map((e) => int.parse(e)).toList();
  return list;
}