Command(String command, { Map<String, dynamic> args, bool resultRequired: false })

Source

Command(this.command, {this.args, bool resultRequired: false}) {
  if (args == null) args = const {};
  if (resultRequired){
    completer = new Completer();
  }
}