VimStatusLine constructor

const VimStatusLine({
  1. required VimState state,
  2. String fileName = '[No Name]',
  3. int totalLines = 0,
  4. bool modified = false,
})

Implementation

const VimStatusLine({
  required this.state,
  this.fileName = '[No Name]',
  this.totalLines = 0,
  this.modified = false,
});