alwaysUse24HourFormatTestValue property Null safety

void alwaysUse24HourFormatTestValue=(bool alwaysUse24HourFormatTestValue)
Deprecated('Use platformDispatcher.alwaysUse24HourFormatTestValue instead. ' 'This feature was deprecated after v2.11.0-0.0.pre.')">@Deprecated('Use platformDispatcher.alwaysUse24HourFormatTestValue instead. ' 'This feature was deprecated after v2.11.0-0.0.pre.')

Hides the real clock format and reports the given alwaysUse24HourFormatTestValue instead.

Implementation

@Deprecated(
  'Use platformDispatcher.alwaysUse24HourFormatTestValue instead. '
  'This feature was deprecated after v2.11.0-0.0.pre.'
)
set alwaysUse24HourFormatTestValue(bool alwaysUse24HourFormatTestValue) { // ignore: avoid_setters_without_getters
  platformDispatcher.alwaysUse24HourFormatTestValue = alwaysUse24HourFormatTestValue;
}