SpotPriceInfo constructor

SpotPriceInfo({
  1. required int tokenId,
  2. required String price,
  3. dynamic hint,
})

Implementation

factory SpotPriceInfo(
        {required int tokenId, required String price, dynamic hint}) =>
    RustLib.instance.api
        .spotPriceInfoNew(tokenId: tokenId, price: price, hint: hint);