ChabokEvent constructor

ChabokEvent(
  1. double revenue, [
  2. String? currency
])

Implementation

ChabokEvent(double revenue, [String? currency]) {
  this.revenue = revenue;
  this.currency = currency;
}