toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() => {
  'digest': digest,
  'tags': tags,
  if (mediaType != null) 'media_type': mediaType,
  if (manifestSize != null) 'manifest_size': manifestSize,
  if (imageSize != null) 'image_size': imageSize,
  if (updatedAt != null) 'updated_at': updatedAt!.toIso8601String(),
};