MdCustomBlock constructor

const MdCustomBlock({
  1. required String type,
  2. required String body,
  3. Object? data,
  4. bool closed = true,
})

Implementation

const MdCustomBlock({
  required this.type,
  required this.body,
  this.data,
  this.closed = true,
});