EventParam constructor

EventParam({
  1. double? doubleValue,
  2. double? floatValue,
  3. String? intValue,
  4. String? name,
  5. List<EventParam>? paramValue,
  6. String? stringValue,
})

Implementation

EventParam({
  this.doubleValue,
  this.floatValue,
  this.intValue,
  this.name,
  this.paramValue,
  this.stringValue,
});