only method

  1. @override
T only({
  1. TextStyleDto? span,
  2. SpacingDto? padding,
  3. BoxDecorationDto? decoration,
  4. ColorDto? copyIconColor,
  5. TextStyleDto? textStyle,
})
override

Implementation

@override
T only({
  TextStyleDto? span,
  SpacingDto? padding,
  BoxDecorationDto? decoration,
  ColorDto? copyIconColor,
  TextStyleDto? textStyle,
}) {
  return builder(
    MdCodeDto(
      span: span,
      padding: padding,
      decoration: decoration,
      copyIconColor: copyIconColor,
      textStyle: textStyle,
    ),
  );
}