CreateInstanceRequest_MachineKey constructor

CreateInstanceRequest_MachineKey({
  1. KeyType? type,
  2. Timestamp? expirationDate,
})

Implementation

factory CreateInstanceRequest_MachineKey({
  $7.KeyType? type,
  $3.Timestamp? expirationDate,
}) {
  final result = create();
  if (type != null) result.type = type;
  if (expirationDate != null) result.expirationDate = expirationDate;
  return result;
}