ServiceAccountKeysListResponse.fromJson constructor

ServiceAccountKeysListResponse.fromJson(
  1. Map json_
)

Implementation

ServiceAccountKeysListResponse.fromJson(core.Map json_)
  : this(
      serviceAccountKey:
          (json_['serviceAccountKey'] as core.List?)
              ?.map(
                (value) => ServiceAccountKey.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );