TxObjectChange constructor

TxObjectChange({
  1. required String objectId,
  2. required String type,
  3. required String kind,
  4. String? fromAddress,
  5. String? toAddress,
})

Implementation

TxObjectChange({
  required this.objectId,
  required this.type,
  required this.kind,
  this.fromAddress,
  this.toAddress,
});