getContentFromAllById method

CustomerPlaceContent? getContentFromAllById(
  1. String uuid
)

Implementation

CustomerPlaceContent? getContentFromAllById(String uuid) {
  return all.firstWhereOrNull((content) => (content.uuid == uuid));
}