isConfigurationLoaded method

Future<bool> isConfigurationLoaded({
  1. String? instanceId,
})

Returns true when a validated pinning payload is cached and usable without a new fetch. Pure state read — never triggers a fetch or blocks.

When instanceId is null, the global default instance is used.

Implementation

Future<bool> isConfigurationLoaded({String? instanceId}) {
  throw UnimplementedError(
      'isConfigurationLoaded() has not been implemented.');
}