SettingsModel constructor

SettingsModel({
  1. required String id,
  2. String fcmKey = '',
  3. bool autoApprove = false,
  4. String privacyPolicy = '',
  5. String termsAndConditions = '',
})

Implementation

SettingsModel({
  required this.id,
  this.fcmKey = '',
  this.autoApprove = false,
  this.privacyPolicy = '',
  this.termsAndConditions = '',
  //this.createdAt = const ConstDateTime(0),
  //this.updatedAt = const ConstDateTime(0),
});