EventFeedResponse constructor

EventFeedResponse(
  1. {int? code,
  2. String? status,
  3. String? message,
  4. EventFeedData? data}
)

Implementation

EventFeedResponse({
  this.code,
  this.status,
  this.message,
  this.data,
});