AtomicDistribution constructor

AtomicDistribution({
  1. required AtomicDistributionType type,
  2. num? amount,
  3. String? action,
  4. bool? canUpdate,
})

Implementation

AtomicDistribution({
  required this.type,
  this.amount,
  this.action,
  this.canUpdate,
});