VimCommandResult constructor

const VimCommandResult({
  1. bool success = true,
  2. String message = '',
  3. bool shouldQuit = false,
  4. bool shouldSave = false,
})

Implementation

const VimCommandResult({
  this.success = true,
  this.message = '',
  this.shouldQuit = false,
  this.shouldSave = false,
});