setAutoReset method
Returns boolean for disable auto reset when application lifecycle changed
This method is useful for user change weather this plugin should auto reset brightness when application lifecycle changed.
(iOS only) implemented in iOS only because only iOS native side does not having reset method.
Implementation
@override
Future<void> setAutoReset(bool isAutoReset) async {
await pluginMethodChannel
.invokeMethod(methodNameSetAutoReset, {"isAutoReset": isAutoReset});
}