RawTransaction constructor

RawTransaction({
  1. @JsonKey(name: 'blockType') @BlockTypeConverter() required BlockType type,
  2. Address? address,
  3. Address? toAddress,
  4. BigInt? fee,
  5. @NullableUint8ListBase64Converter() Uint8List? data,
  6. Hash? sendBlockHash,
  7. Hash? previousHash,
  8. @JsonKey(name: 'tokenId') Token? token,
  9. BigInt? amount,
  10. BigInt? height,
  11. BigInt? difficulty,
  12. @NullableUint8ListBase64Converter() Uint8List? nonce,
  13. Hash? hash,
  14. @NullableUint8ListBase64Converter() Uint8List? signature,
  15. @NullableUint8ListBase64Converter() Uint8List? publicKey,
})

Implementation

factory RawTransaction({
  @JsonKey(name: 'blockType') @BlockTypeConverter() required BlockType type,
  Address? address,
  Address? toAddress,
  BigInt? fee,
  @NullableUint8ListBase64Converter() Uint8List? data,
  Hash? sendBlockHash,
  Hash? previousHash,
  @JsonKey(name: 'tokenId') Token? token,
  BigInt? amount,
  BigInt? height,
  BigInt? difficulty,
  @NullableUint8ListBase64Converter() Uint8List? nonce,
  Hash? hash,
  @NullableUint8ListBase64Converter() Uint8List? signature,
  @NullableUint8ListBase64Converter() Uint8List? publicKey,
}) = _RawTransaction;