readyAsync property Null safety

  1. @Deprecated("Prefer 'ready'. This redirect will be removed in a future update")
Future<bool> readyAsync

'readyAsync' is deprecated and shouldn't be used. Prefer ready. This redirect will be removed in a future update.

Implementation

@Deprecated(
  "Prefer 'ready'. This redirect will be removed in a future update",
)
Future<bool> get readyAsync => Future.sync(() => ready);