Twitter constructor

const Twitter({
  1. int? id,
  2. String? uid,
  3. String? companyUid,
  4. String? pageId,
  5. String? payload,
  6. String? accessToken,
  7. String? status,
  8. DateTime? createdAt,
  9. DateTime? updatedAt,
})

Implementation

const Twitter({
  this.id,
  this.uid,
  this.companyUid,
  this.pageId,
  this.payload,
  this.accessToken,
  this.status,
  this.createdAt,
  this.updatedAt,
});