InviteCard constructor

const InviteCard({
  1. Key? key,
  2. String? event,
  3. String? invitedPeopleCount,
  4. String? timeAndDate,
  5. String? atSign,
  6. String? memberCount,
  7. bool isStartTime = false,
})

Implementation

const InviteCard(
    {Key? key,
    this.event,
    this.invitedPeopleCount,
    this.timeAndDate,
    this.atSign,
    this.memberCount,
    this.isStartTime = false})
    : super(key: key);