RealtimeData constructor

RealtimeData({
  1. List<RealtimeDataColumnHeaders>? columnHeaders,
  2. String? id,
  3. String? kind,
  4. RealtimeDataProfileInfo? profileInfo,
  5. RealtimeDataQuery? query,
  6. List<List<String>>? rows,
  7. String? selfLink,
  8. int? totalResults,
  9. Map<String, String>? totalsForAllResults,
})

Implementation

RealtimeData({
  this.columnHeaders,
  this.id,
  this.kind,
  this.profileInfo,
  this.query,
  this.rows,
  this.selfLink,
  this.totalResults,
  this.totalsForAllResults,
});