CollectionListResponse.fromJson constructor

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

Creates a new CollectionListResponse instance from a JSON map.

The json parameter should be a valid JSON map representing the response data. This factory method is typically used to convert the received JSON response from the server into a CollectionListResponse object for easy manipulation and access to the response data.

Implementation

factory CollectionListResponse.fromJson(Map<String, dynamic> json) =>
    _$CollectionListResponseFromJson(json);