dev
dart 15 lines 361 Bytes
Raw
1 class USDT0Quote {
2 const USDT0Quote({
3 required this.nativeFee,
4 required this.lzTokenFee,
5 });
6
7 /// Fee in native token (e.g. ETH, MATIC) in wei.
8 final BigInt nativeFee;
9
10 /// Fee in LZ token (if paying with LZ token).
11 final BigInt lzTokenFee;
12
13 @override
14 String toString() => 'USDT0Quote(nativeFee: $nativeFee, lzTokenFee: $lzTokenFee)';
15 }