pkg_transus version: 0.0.1

Published 2026-04-28

ruud

sdk | dart
repository | svn
platform | generic
status | n/a
  • Readme
  • Changelog
  • Versions

pkg_transus

Typed Dart wrapper around the Transus WebConnect SOAP schema at https://webconnect.transus.com/?wsdl.

graph

Features

  • Calls the M10100, M10105, M10110, M10120, and M10300 operations.
  • Uses dio for transport and xml for SOAP envelope parsing.
  • Exposes typed request, response, and SOAP fault classes.

Getting started

Add the package to your project and create a TransusWebConnectClient.

Usage

import 'package:transus/transus.dart';

final client = TransusWebConnectClient();

final response = await client.m10100(
  const M10100(
    clientId: 'your-client-id',
    clientKey: 'your-client-key',
    message: '<payload />',
    transactionId: 'transaction-123',
  ),
);

print(response.exitCode);

Changelog

0.0.1 - 2026-04-28

  • Initial version.

0.0.1

2026-04-28 download