OrgInfo constructor

const OrgInfo({
  1. required int branchCount,
  2. required OrgId id,
  3. required String? name,
})

Implementation

const OrgInfo({
  required this.branchCount,
  required this.id,
  required this.name
});