Testers.fromJson constructor

Testers.fromJson(
  1. 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,
      );