CodePayload constructor

const CodePayload({
  1. required String code,
  2. String language = 'plaintext',
  3. String? filename,
})

Implementation

const CodePayload({
  required this.code,
  this.language = 'plaintext',
  this.filename,
});