cut method

Future<void> cut(
  1. int meIndex
)

Performs a cut on an ME.

Implementation

Future<void> cut(int meIndex) async {
  await sendCommand(CutCommand(meIndex: meIndex));
}