pushNotification function

  1. @Deprecated('Use localNotification instead')
LocalNotification pushNotification(
  1. String title,
  2. String body
)

Creates a new LocalNotification with the given title and body.

This is a backwards-compatible alias for localNotification.

Implementation

@Deprecated('Use localNotification instead')
LocalNotification pushNotification(String title, String body) =>
    LocalNotification(title: title, body: body);