sendThroughGetMethod property Null safety

(Future<bool> Function?(String urlWithoutParameters, String urlParameters, {Map<String, String>? headers})?) sendThroughGetMethod
read / write

sendThroughGetMethod Function used to send the data to the server. There is a fallback in case it is not initialized through the init call. Returns true for success. urlWithoutParameters The matomo.php URL without the parameters. urlParameters The parameters String formatted for a GET request. headers The headers to be sent along with request.

Implementation

Future<bool> Function(
  String urlWithoutParameters,
  String urlParameters, {
  Map<String, String>? headers,
})? sendThroughGetMethod;