customers top-level property

List<User> customers
getter/setter pair

Implementation

List<User> customers = [
  User(
    firstName: 'customer1',
    lastName: 'lastName1',
    role: Role.customer,
    company: customerCompanies[1],
    email: 'emailXXX@example.org',
    telephoneNr: '111111111111',
  ),
  User(
    firstName: 'customer2',
    lastName: 'lastName2',
    role: Role.customer,
    company: customerCompanies[2],
    email: 'emailXXX@example.org',
    telephoneNr: '12121212121212',
  ),
  User(
    firstName: 'customer3',
    lastName: 'customer3NoComp',
    role: Role.customer,
    email: 'emailXXX@example.org',
    company: Company(),
  ),
  User(
    firstName: 'customer4',
    lastName: 'customer4NoComp',
    role: Role.customer,
    email: 'emailXXX@example.org',
    company: Company(),
  ),
];