setFontWeight method

DefineMTextModifier setFontWeight(
  1. FontWeight fontWeight
)

Implementation

DefineMTextModifier setFontWeight(FontWeight fontWeight) {
  final newStyle = this.valueStyle.copyWith(fontWeight: fontWeight);
  final DefineMTextModifier newModifierValue =
      this.copyWith(valueStyle: newStyle);
  return newModifierValue;
}