enableDisableArchivedSettings static method

Future<void> enableDisableArchivedSettings({
  1. required bool enable,
  2. required dynamic flyCallBack(
    1. FlyResponse response
    ),
})

This method enables or disables the archived settings feature in the Mirrorfly SDK, based on the value of the enable parameter.

The flyCallBack parameter is a function that will be called upon completion of the operation. It receives a FlyResponse object as a parameter, which contains information about the success or failure of the operation.

Implementation

static Future<void> enableDisableArchivedSettings(
    {required bool enable,
    required Function(FlyResponse response) flyCallBack}) {
  return FlyChatFlutterPlatform.instance
      .enableDisableArchivedSettings(enable, flyCallBack);
}