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