EnableManagedRotationRequest.fromJson constructor

EnableManagedRotationRequest.fromJson(
  1. Map json_
)

Implementation

EnableManagedRotationRequest.fromJson(core.Map json_)
  : this(
      cloudSqlSingleUserCredentials:
          json_.containsKey('cloudSqlSingleUserCredentials')
          ? CloudSQLSingleUserCredentials.fromJson(
              json_['cloudSqlSingleUserCredentials']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );