only method

  1. @override
T only({
  1. TextStyleDto? textStyle,
  2. SpacingDto? padding,
})
override

Implementation

@override
T only({
  TextStyleDto? textStyle,
  SpacingDto? padding,
}) {
  return builder(
    MdTextStyleDto(
      textStyle: textStyle,
      padding: padding,
    ),
  );
}