mBOrganizationTypes top-level property

List<MBInfo> mBOrganizationTypes
getter/setter pair

Implementation

List<MBInfo> mBOrganizationTypes = [
  MBInfo(
    display: "Manufacturer",
    description: "Production and assembly of physical goods or devices",
    code: "OT01",
    color: getMBColorByName("Slate"),
    icon: "factory",
  ),
  MBInfo(
    display: "Software Development",
    description: "Creating and maintaining software applications and systems",
    code: "OT02",
    color: getMBColorByName("Slate"),
    icon: "code",
  ),
  MBInfo(
    display: "Health and Wellness",
    description: "Physical and mental well-being, often through products, services, or programs",
    code: "OT03",
    color: getMBColorByName("Slate"),
    icon: "health_and_safety",
  ),
  MBInfo(
    display: "Fitness and Sports",
    description: "Athletic performance, exercise equipment, sports training, or related services",
    code: "OT04",
    color: getMBColorByName("Slate"),
    icon: "sports",
  ),
  MBInfo(
    display: "Research and Development",
    description: "Innovation, experimentation, and the development of new technologies or products",
    code: "OT05",
    color: getMBColorByName("Slate"),
    icon: "science",
  ),
  MBInfo(
    display: "Security and Privacy",
    description: "Protection of data, devices, or physical environments through advanced security measures",
    code: "OT06",
    color: getMBColorByName("Slate"),
    icon: "security",
  ),
  MBInfo(
    display: "Fashion and Design",
    description: "Apparel, accessories, and aesthetic-focused design solutions",
    code: "OT07",
    color: getMBColorByName("Slate"),
    icon: "design_services",
  ),
  MBInfo(
    display: "Retail and Distribution",
    description: "Sale, delivery, and logistics of products to end-users or other businesses",
    code: "OT08",
    color: getMBColorByName("Slate"),
    icon: "shopping_cart",
  ),
  MBInfo(
    display: "Education",
    description: "Learning, teaching, and knowledge dissemination through programs, tools, or platforms",
    code: "OT09",
    color: getMBColorByName("Slate"),
    icon: "school",
  ),
];