getFullNotification static method

Future getFullNotification(
  1. String uid
)

get the full notification from android with the unqiue id

Implementation

static Future<dynamic> getFullNotification(String uid) async {
  return await _bgMethodChannel
      .invokeMethod<dynamic>("service.get_full_notification", [uid]);
}