getMultiSessionRecord static method

Future<bool> getMultiSessionRecord()

This will return value for multiSessionRecord status as boolean

Implementation

static Future<bool> getMultiSessionRecord() async {
  final bool? value =
      await _channel.invokeMethod<bool>('getMultiSessionRecord');
  return value!;
}