getOrg method
Implementation
Organization? getOrg(String orgId) {
return state.organizations.firstWhere(
(org) => org.orgId == orgId,
);
}
Organization? getOrg(String orgId) {
return state.organizations.firstWhere(
(org) => org.orgId == orgId,
);
}