toMap method

Map<String, dynamic> toMap()

Converts the configuration to a map for platform communication.

This method is used internally to pass configuration parameters to the native platform implementations.

Returns: A Map<String, dynamic> containing the configuration parameters.

Implementation

Map<String, dynamic> toMap() {
  return {
    'bc_hostname': hostname,
    'bc_debug': debug,
    'bc_override_app_id': overrideAppId,
    'bc_simulator_username': simulatorUsername,
    'bc_simulator_session_id': simulatorSessionId,
  };
}