forFirmware static method

TrezorHardwareWalletDevice forFirmware(
  1. TrezorFeatures features, {
  2. required String hidPath,
})

Implementation

static TrezorHardwareWalletDevice forFirmware(
  TrezorFeatures features, {
  required String hidPath,
}) {
  final device = TrezorHardwareWalletDevice(hidPath: hidPath);
  device.features = features;
  return device;
}