brieflyShowPasswordTestValue property Null safety

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

Hides the real brieflyShowPassword and reports the given brieflyShowPasswordTestValue instead.

Implementation

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