Description constructor

Description({
  1. @JsonKey.new(name: 'description') String? description,
  2. @JsonKey.new(name: 'description_type') String? descriptionType,
  3. @JsonKey.new(name: 'type') String? type,
  4. @JsonKey.new(name: 'uuid') String? uuid,
})

Implementation

factory Description({
  @JsonKey(name: 'description') String? description,
  @JsonKey(name: 'description_type') String? descriptionType,
  @JsonKey(name: 'type') String? type,
  @JsonKey(name: 'uuid') String? uuid,
}) = _Description;