NiceCodeFile constructor

const NiceCodeFile({
  1. required String name,
  2. String content = '',
  3. String language = 'text',
  4. bool readOnly = false,
})

Implementation

const NiceCodeFile({
  required this.name,
  this.content = '',
  this.language = 'text',
  this.readOnly = false,
});