BluetoothDeviceType constructor Null safety

BluetoothDeviceType(
  1. {BluetoothDeviceType_Type? type}
)

Implementation

factory BluetoothDeviceType({
  BluetoothDeviceType_Type? type,
}) {
  final _result = create();
  if (type != null) {
    _result.type = type;
  }
  return _result;
}