read method

  1. @override
Uint8List read(
  1. int count
)
override

Reads the given number of bytes from the port.

Implementation

@override
Uint8List read(int count) => _delegate?.read(count) ?? Uint8List.fromList([]);