Item constructor

Item({
  1. required String href,
  2. String? id,
  3. String? fallback,
  4. String? mediaOverlay,
  5. String? mediaType,
  6. required List<String> properties,
})

Implementation

Item(
    {required this.href,
    this.id,
    this.fallback,
    this.mediaOverlay,
    this.mediaType,
    required this.properties});