ColabImage.fromJson constructor

ColabImage.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ColabImage.fromJson(Map<String, dynamic> json) {
  return ColabImage(
    releaseName: json['releaseName'] ?? '',
    description: json['description'] ?? '',
  );
}