UserProfileKeys constructor

const UserProfileKeys({
  1. String id = 'profile_id',
  2. String name = 'display_name',
  3. String photo = 'display_photo',
  4. String platform = 'platform',
  5. String token = 'device_token',
  6. String room = 'active_room',
  7. String extra = 'profile_extra',
  8. String newMessageAlerts = 'new_message_alerts',
  9. String newRoomAlerts = 'new_room_alerts',
})

Implementation

const UserProfileKeys({
  this.id = 'profile_id',
  this.name = 'display_name',
  this.photo = 'display_photo',
  this.platform = 'platform',
  this.token = 'device_token',
  this.room = 'active_room',
  this.extra = 'profile_extra',
  this.newMessageAlerts = 'new_message_alerts',
  this.newRoomAlerts = 'new_room_alerts',
});