whenReady method

  1. @override
Future<SplitClient> whenReady()
override

Returns Future that is completed when the most up-to-date information has been retrieved from the Split cloud.

Implementation

@override
Future<SplitClient> whenReady() async {
  await _platform.onReady(
      matchingKey: _matchingKey, bucketingKey: _bucketingKey);

  return Future.value(this);
}