CreateSigningKeyResponse_ constructor
CreateSigningKeyResponse_({
- String? key,
- Int64? expiresAt,
Implementation
factory CreateSigningKeyResponse_({
$core.String? key,
$fixnum.Int64? expiresAt,
}) {
final $result = create();
if (key != null) {
$result.key = key;
}
if (expiresAt != null) {
$result.expiresAt = expiresAt;
}
return $result;
}