MultisigStorage constructor

const MultisigStorage({
  1. required TimePoint timePoint,
  2. required BigInt deposit,
  3. required Uint8List depositor,
  4. required List<Uint8List> approvals,
})

Implementation

const MultisigStorage({
  required this.timePoint,
  required this.deposit,
  required this.depositor,
  required this.approvals,
});