requests top-level property

List<FinDoc> requests
getter/setter pair

Implementation

List<FinDoc> requests = [
  FinDoc(
      docType: FinDocType.request,
      requestType: RequestType.information,
      otherCompany: supplierCompanies[0],
      description: "this is the first request",
      items: []),
  FinDoc(
      docType: FinDocType.request,
      requestType: RequestType.consultation,
      otherCompany: supplierCompanies[1],
      description: "this is the second request",
      items: []),
  FinDoc(
      docType: FinDocType.request,
      requestType: RequestType.other,
      otherUser: customers[0],
      description: "this is the third request",
      items: []),
  FinDoc(
      docType: FinDocType.request,
      requestType: RequestType.other,
      otherUser: customers[1],
      description: "this is the fourth request",
      items: []),
  FinDoc(
      docType: FinDocType.request,
      requestType: RequestType.information,
      otherUser: customers[2],
      description: "this is the fifth request",
      items: []),
  FinDoc(
      otherUser: customers[3],
      requestType: RequestType.consultation,
      description: "this is the sixth request",
      items: []),
];