Command.cronDelete constructor

Command.cronDelete({
  1. int? id,
  2. int type = 0,
})

Command to stop the specific cron job.

Implementation

Command.cronDelete({this.id, int type = 0})
    : method = CommandMethods.cronDel,
      parameters = <dynamic>[type];