BluetoothState constructor

BluetoothState({
  1. BluetoothState_State? state,
})

Implementation

factory BluetoothState({
  BluetoothState_State? state,
}) {
  final result = create();
  if (state != null) result.state = state;
  return result;
}