setAutoDetectBackground method
Implementation
@override
Future<void> setAutoDetectBackground(bool autoDetectBackground) async {
Map<String, dynamic> arguments = {
NpawConstants.autoDetectBackground: autoDetectBackground
};
await methodChannel.invokeMethod<void>('setAutoDetectBackground', arguments);
}