RegisterTransport constructor
RegisterTransport({})
Implementation
RegisterTransport({
required this.idToken,
required this.sessionId,
required this.cashregisterId,
String? baseUrl,
http.Client? httpClient,
Duration? timeout,
}) : baseUrl = ohneSchraegstrich(baseUrl ?? kRegisterBaseUrl),
_http = httpClient ?? http.Client(),
_timeout = timeout ?? const Duration(seconds: 30);