CreateSigningKeyResponse_ constructor

CreateSigningKeyResponse_({
  1. String? key,
  2. 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;
}