DepositEntry constructor

DepositEntry({
  1. required String destination,
  2. String? tag,
  3. List<String>? properties,
})

Implementation

DepositEntry({
  required this.destination,
  this.tag,
  this.properties,
});