getSessionUrl static method

Future<String?> getSessionUrl()

Returns the address of the recorded session on TestFairy’s developer portal. Will return null if recording not yet started.

Implementation

static Future<String?> getSessionUrl() async {
  TestFairyBase.prepareTwoWayInvoke();

  final String? sessionUrl =
      await TestFairyBase.channel.invokeMethod<String>('getSessionUrl');

  return sessionUrl;
}