Facebook constructor

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

Implementation

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