ProjectSubscriptions.fromJson constructor
ProjectSubscriptions.fromJson(
- Map json_
Implementation
ProjectSubscriptions.fromJson(core.Map json_)
: this(
list:
(json_['list'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);