ListCssProductsResponse.fromJson constructor

ListCssProductsResponse.fromJson(
  1. Map json_
)

Implementation

ListCssProductsResponse.fromJson(core.Map json_)
    : this(
        cssProducts: (json_['cssProducts'] as core.List?)
            ?.map((value) => CssProduct.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        nextPageToken: json_['nextPageToken'] as core.String?,
      );