GoogleFirebaseAppdistroV1Tester.fromJson constructor

GoogleFirebaseAppdistroV1Tester.fromJson(
  1. Map json_
)

Implementation

GoogleFirebaseAppdistroV1Tester.fromJson(core.Map json_)
  : this(
      displayName: json_['displayName'] as core.String?,
      groups: (json_['groups'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
      lastActivityTime: json_['lastActivityTime'] as core.String?,
      name: json_['name'] as core.String?,
    );