sendMessageInSession method

Future<Map<String, dynamic>> sendMessageInSession(
  1. String message
)

Sends a message in the active multi-session USSD session

message - The message to send

Returns a map with the operation result. Only works if there is an active multi-session session.

Implementation

Future<Map<String, dynamic>> sendMessageInSession(String message) {
  throw UnimplementedError(
    'sendMessageInSession() has not been implemented.',
  );
}