Mode constructor

Mode({
  1. String? modeName,
  2. int? modeId,
  3. String? balance,
  4. bool? canUse,
  5. String? payableAmount,
  6. List<ValidationError>? validationErrors,
})

Implementation

Mode({
  this.modeName,
  this.modeId,
  this.balance,
  this.canUse,
  this.payableAmount,
  this.validationErrors,
});