AppInfo constructor

AppInfo({
  1. required String appName,
  2. required String appId,
  3. required Category category,
  4. required String appEmail,
  5. String? deviceName,
})

Implementation

AppInfo(
    {required this.appName,
      required this.appId,
      required this.category,
      required this.appEmail,
      this.deviceName});