send method

  1. @override
Future<bool> send(
  1. JsonMap payload
)
override

Sends the provided payload as the body of POST request to the configured endpoint.

Implementation

@override
Future<bool> send(final JsonMap payload) async => sendString(jsonEncode(payload));