highLightFontWeight method

DefineMTextModifier highLightFontWeight(
  1. FontWeight value
)

Implementation

DefineMTextModifier highLightFontWeight(FontWeight value) {
  final DefineMTextModifier newModifierValue = this.copyWith(
      valueHighlightStyle: (this.valueHighlightStyle ?? TextStyle())
          .copyWith(fontWeight: value));
  return newModifierValue;
}