restart method

  1. @override
Future<void> restart()

Restarts this print job. You can request restart of a failed print job.

Officially Supported Platforms/Implementations:

Implementation

@override
Future<void> restart() async {
  Map<String, dynamic> args = <String, dynamic>{};
  await channel?.invokeMethod('restart', args);
}