DeleteCommand constructor

DeleteCommand(
  1. Future<void> userMethod(
    1. String
    )
)

Implementation

DeleteCommand(this.userMethod) {
  argParser.addOption(
    'name',
    mandatory: true,
  );
}