UsageSetting constructor

UsageSetting({
  1. required Language language,
  2. String? appDescription = '',
  3. String? appName = '',
  4. Uint8List? imagePath = null,
  5. String? modalText = '',
})

Implementation

UsageSetting(
    {required this.language,
    this.appDescription = '',
    this.appName = '',
    this.imagePath = null,
    this.modalText = ''});