UsageSetting constructor

UsageSetting({
  1. String? language = 'EN',
  2. String? appDescription = '',
  3. String? appName = '',
  4. Uint8List? imagePath,
  5. int? imageView = 0,
  6. double? buttonRadius = 0.0,
  7. double? modalRadius = 0.0,
  8. String? color = '#FFFFFF',
  9. String? modalText = '',
  10. String? dialogTitle = '',
  11. String? dialogMessage1 = '',
  12. String? dialogMessage2 = '',
  13. List<String>? blacklist = null,
})

Implementation

UsageSetting({
  this.language = 'EN',
  this.appDescription = '',
  this.appName = '',
  this.imagePath,
  this.imageView = 0,
  this.buttonRadius = 0.0,
  this.modalRadius = 0.0,
  this.color = '#FFFFFF',
  this.modalText = '',
  this.dialogTitle = '',
  this.dialogMessage1 = '',
  this.dialogMessage2 = '',
  this.blacklist = null,
});