InputDevice.fromMap constructor

InputDevice.fromMap(
  1. Map map
)

Implementation

factory InputDevice.fromMap(Map map) => InputDevice(
      id: map['id'],
      label: map['label'],
      channels: map['channels'],
      samplingRate: map['samplingRate'],
    );