startRecordScreenAndAudio static method

Future<bool> startRecordScreenAndAudio(
  1. String name, {
  2. String? titleNotification,
  3. String? messageNotification,
})

Implementation

static Future<bool> startRecordScreenAndAudio(String name, {String? titleNotification, String? messageNotification}) async {
  //await _maybeStartFGS(titleNotification, messageNotification);
  final bool start = await FlutterScreenRecordingPlatform.instance.startRecordScreenAndAudio(name);
  return start;
}