RestExternalInterface constructor
RestExternalInterface({})
Implementation
RestExternalInterface({
required List<GatewayConnection<Gateway>> gatewayConnections,
required String baseUrl,
Map<String, String> headers = const {},
RestService? restService,
}) : _restService = restService ??
RestService(
options: RestServiceOptions(baseUrl: baseUrl, headers: headers),
),
super(gatewayConnections);