Link constructor
const
Link({
- @JsonKey.new(name: 'url') required String url,
Creates a new Link object.
Implementation
const factory Link({
/// URL of the link
@JsonKey(name: 'url') required String url,
}) = _Link;