TrezorBridgeAdapter constructor

TrezorBridgeAdapter({
  1. String baseUrl = 'http://127.0.0.1:21325',
  2. Client? client,
})

Implementation

TrezorBridgeAdapter({
  String baseUrl = 'http://127.0.0.1:21325',
  http.Client? client,
})  : _baseUrl = baseUrl,
      _client = client ?? http.Client();