setNotificationName method

Future<void> setNotificationName(
  1. String notificationName
)

Sets the name for the notification. This method allows customization of the notification name that will be displayed to the user.

Implementation

Future<void> setNotificationName(String notificationName) {
  throw UnimplementedError(
    'setNotificationName() has not been implemented.',
  );
}