configuration method

Future<void> configuration()

while creating channel do not mistake for creating channel key or not confusing with channel key create same channel key and use for notification one more thing prevent with null value or like null string because it will be giving error like native java null pointer exception so be care full while passing a data or creating a notification..

Implementation

Future<void> configuration() async {
  if (kDebugMode) {
    print("configuration check with this");
  }
  await awesomeNotifications.initialize(
      null,
      [
        NotificationChannel(
          channelKey: 'basic_channel',
          channelName: 'Basic Notifications',
          defaultColor: Colors.teal,
          importance: NotificationImportance.High,
          channelShowBadge: true,
          channelDescription: 'Basic Instant Notification',
          channelGroupKey: 'basic_channel_group',
        ),
      ],
      debug: true);
}