current method

Future<Conference?> current()

Returns the Conference object for the current conference.

Implementation

Future<Conference?> current() async {
  final result =
      await _methodChannel.invokeMethod<Map<Object?, Object?>>("current");
  if (result != null) {
    return ConferenceMapper.fromMap(result);
  }
  return null;
}