getOrg method

Organization? getOrg(
  1. String orgId
)

Implementation

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