ImageUrl constructor

const ImageUrl({
  1. String? url,
  2. @JsonKey(name: 'b64_json') String? base64Json,
})

Returns the image url or base 64 representation.

More here.

Implementation

const factory ImageUrl({
  final String? url,
  @JsonKey(name: 'b64_json') final String? base64Json,
}) = _ImageUrl;