OrganizationLineItem constructor

OrganizationLineItem({
  1. Key? key,
  2. void onTap()?,
  3. bool? hideChevron,
  4. bool? active,
  5. required UserOrganization organization,
})

Implementation

OrganizationLineItem({
  Key? key,
  this.onTap,
  this.hideChevron,
  this.active,
  required this.organization,
}) : super(key: key);