AircraftContractImage constructor

AircraftContractImage({
  1. required String url,
  2. required LicenseType license,
  3. String? webUrl,
  4. String? author,
  5. String? title,
  6. String? description,
  7. List<String>? htmlAttributions = const [],
})

Returns a new AircraftContractImage instance.

Implementation

AircraftContractImage({
  required this.url,
  required this.license,
  this.webUrl,
  this.author,
  this.title,
  this.description,
  this.htmlAttributions = const [],
});