read method

void read({
  1. required String manufacturesDictUrl,
})

Implementation

void read({required String manufacturesDictUrl}) {
  _manufacturesDictUrl = manufacturesDictUrl;
  _state = InfoState(
    status: WorkStatus.working,
    remoteInfo: RemoteInfo(),
  );
  notifyState(state);

  _bleInfoReader.read();
}