ListServiceAccountKeysResponse.fromJson constructor

ListServiceAccountKeysResponse.fromJson(
  1. Map json_
)

Implementation

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