getDashboardSessionUrl static method

  1. @SL_COMPATIBILITY_NAME("name=getDashboardSessionUrl;type=func;params=withCurrentTimestamp{boolean};returns=string")
Future<String?> getDashboardSessionUrl(
  1. bool withCurrentTimestamp
)

Implementation

@SL_COMPATIBILITY_NAME("name=getDashboardSessionUrl;type=func;params=withCurrentTimestamp{boolean};returns=string")
	static Future<String?> getDashboardSessionUrl(bool withCurrentTimestamp) async{
 	String? url = await _channel.invokeMethod('getDashboardSessionUrl',{"withCurrentTimestamp" : withCurrentTimestamp});
	return url;
	}