onConfigure method

  1. @override
Future<void> onConfigure()

Implementation

@override
Future<void> onConfigure() async {
  try {
    await _channel.invokeMethod<void>('startSession');
  } on Exception {
    // TODO: log, but should not happen
  }
}