isArchivedSettingsEnabled static method

Future<bool?> isArchivedSettingsEnabled()

Checks whether the archived settings feature is enabled in the Mirrorfly platform.

This method asynchronously queries the Mirrorfly platform to determine whether the archived settings feature is enabled.

Returns a Future containing a bool value indicating whether the archived settings feature is enabled.

If the archived settings feature is enabled, the Future resolves to true. If the archived settings feature is disabled, the Future resolves to false.

Implementation

static Future<bool?> isArchivedSettingsEnabled() {
  return FlyChatFlutterPlatform.instance.isArchivedSettingsEnabled();
}