weight method

Text weight(
  1. FontWeight weight
)

Implementation

Text weight(FontWeight weight) {
  return copyWith(
    style: style.copyWith(fontWeight: weight),
  );
}