$CustomList.fromJson constructor
$CustomList.fromJson(
- Map json_
Implementation
$CustomList.fromJson(core.Map json_)
: this(
customListId: json_.containsKey('customListId')
? json_['customListId'] as core.String
: null,
displayName: json_.containsKey('displayName')
? json_['displayName'] as core.String
: null,
name: json_.containsKey('name') ? json_['name'] as core.String : null,
);