blockQuote property

TextModifier get blockQuote

Implementation

TextModifier get blockQuote => WrappedText(
      style: (context, theme) => theme.typography.blockQuote,
      wrapper: (context, child) => Container(
        decoration: BoxDecoration(
          border: Border(
            left: BorderSide(
              color: Theme.of(context).colorScheme.border,
              width: 2,
            ),
          ),
        ),
        padding: const EdgeInsets.only(left: 16),
        child: child,
      ),
      child: this,
    );