BlockStyle constructor

const BlockStyle({
  1. EdgeInsets? margin,
  2. EdgeInsets? padding,
  3. BackgroundStyle? background,
  4. InlineTextStyle? text,
})

Implementation

const BlockStyle({
  EdgeInsets? margin,
  EdgeInsets? padding,
  this.background,
  this.text,
})  : _margin = margin,
      _padding = padding;