Application constructor

Application({
  1. String? applicationId,
  2. String? name,
  3. String? createdAt,
  4. String? logoUrl,
  5. String? applicationUrl,
  6. String? reasonForAccess,
})

Implementation

Application({
  this.applicationId,
  this.name,
  this.createdAt,
  this.logoUrl,
  this.applicationUrl,
  this.reasonForAccess,
});