displayProgress method

Future<void> displayProgress(
  1. int progress, {
  2. bool reverse = false,
})

Used to display a progress value on C1 / D1.

progress : Value between 0 and 100.

Limited to D1 only for NothingPhone1.

Implementation

Future<void> displayProgress(int progress, {bool reverse = false}) {
  throw UnimplementedError('displayProgress() has not been implemented.');
}