enableDisableArchivedSettings static method
Future<void>
enableDisableArchivedSettings({
- required bool enable,
- required dynamic flyCallBack(
- 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);
}