setAuthInfo method

Future<bool> setAuthInfo(
  1. Map<String, String> info
)

Set arbitrary authentication info key/values (e.g., ticket_id).

This method allows you to pass additional authentication information to the Dimelo SDK.

Parameters:

  • info - Map of key-value pairs containing authentication information

Returns true if auth info was set successfully, false otherwise.

Implementation

Future<bool> setAuthInfo(Map<String, String> info) {
  throw UnimplementedError('setAuthInfo() has not been implemented.');
}