putFontWeight static method

void putFontWeight(
  1. BuildContext context,
  2. String key,
  3. FontWeight value
)

Put a font weight value

Implementation

static void putFontWeight(
  BuildContext context,
  String key,
  FontWeight value,
) {
  _getNotifier(context)?.putFontWeight(key, value);
}