readWeight method

Future<Map<String, dynamic>?> readWeight(
  1. int scannerId
)

Read weight from scale

scannerId The ID of the scanner Returns a map with 'weight', 'weightMode', 'status', and 'statusText'

Implementation

Future<Map<String, dynamic>?> readWeight(int scannerId) {
  throw UnimplementedError('readWeight() has not been implemented.');
}