Application constructor

Application({
  1. ApplicationLinks? links,
  2. ApplicationAbout? about,
  3. ApplicationAgreement? agreement,
  4. ApplicationConfiguration? configuration,
  5. List<ApplicationContactPoint>? contactPoints = const [],
  6. DateTime? createdAt,
  7. String? id,
  8. required String name,
  9. required String token,
  10. String? type,
  11. DateTime? updatedAt,
  12. String? version,
})

Returns a new Application instance.

Implementation

Application({
  this.links,
  this.about,
  this.agreement,
  this.configuration,
  this.contactPoints = const [],
  this.createdAt,
  this.id,
  required this.name,
  required this.token,
  this.type,
  this.updatedAt,
  this.version,
});