BleDevice.fromId constructor

BleDevice.fromId(
  1. String remoteId, {
  2. String? platformName,
  3. String? advName,
})

Implementation

BleDevice.fromId(String remoteId, {String? platformName, String? advName})
  : this(
      remoteId: BleRemoteId(remoteId),
      platformName: platformName,
      advName: advName,
    );