Balance constructor

Balance({
  1. String? name,
  2. String? label,
  3. dynamic id,
  4. Price? price,
})

Implementation

Balance({
    this.name,
    this.label,
    this.id,
    this.price,
});