CreateHardwareIdentityResponse constructor

CreateHardwareIdentityResponse({
  1. HardwareIdentity? identity,
})

Implementation

factory CreateHardwareIdentityResponse({
  $1.HardwareIdentity? identity,
}) {
  final _result = create();
  if (identity != null) {
    _result.identity = identity;
  }
  return _result;
}