setAutoDetectBackground method

  1. @override
Future<void> setAutoDetectBackground(
  1. bool autoDetectBackground
)
override

Implementation

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