getDashboardSessionUrl static method

Future<String?> getDashboardSessionUrl(
  1. bool withCurrentTimestamp
)

Returns url for current session to Smartlook dashboard set withCurrentTimestamp to get url with timestamp

Implementation

static Future<String?> getDashboardSessionUrl(
    bool withCurrentTimestamp) async {
  final String? url = await _channel.invokeMethod('getDashboardSessionUrl',
      {"withCurrentTimestamp": withCurrentTimestamp});
  return url;
}