addLocalNotification static method

Future<void> addLocalNotification(
  1. MobPushLocalNotification localNotification
)

Implementation

static Future<void> addLocalNotification(MobPushLocalNotification localNotification) async {
	return await _channel.invokeMethod('addLocalNotification', {'localNotification': json.encode(localNotification.toJson())});
}