PushNotificationsSettingProps constructor

PushNotificationsSettingProps({
  1. required Future<String?> getToken,
  2. String title = 'Push Notifications',
  3. String label = 'Device token',
})

Implementation

PushNotificationsSettingProps({
  required this.getToken,
  this.title = 'Push Notifications',
  this.label = 'Device token',
});