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