BatchGetCategoriesResponse.fromJson constructor
BatchGetCategoriesResponse.fromJson(
- Map json_
Implementation
BatchGetCategoriesResponse.fromJson(core.Map json_)
: this(
categories: (json_['categories'] as core.List?)
?.map((value) => Category.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);