isMyVideoMirrored method

  1. @override
Future<bool> isMyVideoMirrored()

Call this method to query mirror my video enable.
Return true if the mirror effect enabled, false otherwise.

Implementation

@override
Future<bool> isMyVideoMirrored() async {
  return await methodChannel
      .invokeMethod<bool>('isMyVideoMirrored')
      .then<bool>((bool? value) => value ?? false);
}