setNotification method

Future<void> setNotification(
  1. List<int> ints
)

Implementation

Future<void> setNotification(List<int> ints) async {
  await mConnMethodChannel
      .invokeMethod('setNotification', <String, List<int>>{"ints": ints});
}