setPhotoMode method

  1. @override
Future<bool?> setPhotoMode(
  1. bool isPhoto
)
override

Implementation

@override
Future<bool?> setPhotoMode(bool isPhoto) async {
  final success = await methodChannel.invokeMethod<bool>('setPhotoMode', {'isPhoto': isPhoto});
  return success;
}