BluetoothAdapterInfo.fromJson constructor

BluetoothAdapterInfo.fromJson(
  1. Map json_
)

Implementation

BluetoothAdapterInfo.fromJson(core.Map json_)
  : this(
      address: json_['address'] as core.String?,
      numConnectedDevices: json_['numConnectedDevices'] as core.int?,
    );