boldTextOverride static method

  1. @Deprecated('Migrate to boldTextOf. ' 'This feature was deprecated after v3.5.0-9.0.pre.')
bool boldTextOverride(
  1. BuildContext context
)

Returns the MediaQueryData.boldText accessibility setting for the nearest MediaQuery ancestor or false, if no such ancestor exists.

Use of this method will cause the given context to rebuild any time that the MediaQueryData.boldText property of the ancestor MediaQuery changes.

Deprecated in favor of boldTextOf.

Implementation

@Deprecated(
  'Migrate to boldTextOf. '
  'This feature was deprecated after v3.5.0-9.0.pre.'
)
static bool boldTextOverride(BuildContext context) => boldTextOf(context);