FencedBlockSyntax constructor

const FencedBlockSyntax({
  1. required String type,
  2. required String opening,
  3. String closing = ':::',
})

Implementation

const FencedBlockSyntax({
  required this.type,
  required this.opening,
  this.closing = ':::',
});