TodayMemberCard constructor

const TodayMemberCard({
  1. Key? key,
  2. required String identifier,
  3. required List<TodayTag> wallets,
  4. required Function onClickEdit,
  5. List<TodayTag>? departments,
  6. String? proxy,
  7. bool hasExternal = false,
  8. Function? onPressedDepartments,
  9. Function? onPressedExternal,
  10. double? maxWidth,
})

Implementation

const TodayMemberCard({
  super.key,
  required this.identifier,
  required this.wallets,
  required this.onClickEdit,
  this.departments,
  this.proxy,
  this.hasExternal = false,
  this.onPressedDepartments,
  this.onPressedExternal,
  this.maxWidth,
});