dispose method

  1. @mustCallSuper
void dispose()

Supply a consistent API requiring the user to implement the dispose() function.

Implementation

@mustCallSuper

/// Supply a consistent API requiring the user to implement the dispose() function.
void dispose() {
  // Not really necessary but provides a dispose() function for the user.
  _flutterLocalNotificationsPlugin = null;
}