UsageSetting constructor

UsageSetting({
  1. String? language = 'EN',
  2. String? appDescription = '',
  3. String? appName = '',
  4. Uint8List? imagePath,
  5. String? modalText = '',
  6. String? dialogTitle = '',
  7. String? dialogMessage1 = '',
  8. String? dialogMessage2 = '',
})

Implementation

UsageSetting({
  this.language = 'EN',
  this.appDescription = '',
  this.appName = '',
  this.imagePath,
  this.modalText = '',
  this.dialogTitle = '',
  this.dialogMessage1 = '',
  this.dialogMessage2 = '',
});