send method

Future<Map<String, dynamic>> send(
  1. String endpoint, {
  2. Map<String, dynamic> parameters = const <String, dynamic>{},
})

Send a request to the Gigya SDK.

The endpoint specifies which API endpoint to use. The parameters specify the parameters to pass to the endpoint.

Implementation

Future<Map<String, dynamic>> send(
  String endpoint, {
  Map<String, dynamic> parameters = const <String, dynamic>{},
}) {
  return GigyaFlutterPluginPlatform.instance.send(
    endpoint,
    parameters: parameters,
  );
}