HeliumTransactionPriceOracleV1 constructor

HeliumTransactionPriceOracleV1({
  1. required HeliumTransactionType type,
  2. required String hash,
  3. required int height,
  4. required DateTime time,
  5. required int price,
  6. required String publicKey,
  7. required int blockHeight,
  8. required int fee,
})

Creates a new instance.

Implementation

HeliumTransactionPriceOracleV1({
  required HeliumTransactionType type,
  required String hash,
  required int height,
  required DateTime time,
  required this.price,
  required this.publicKey,
  required this.blockHeight,
  required this.fee,
}) : super(type: type, hash: hash, height: height, time: time);