canUpdate static method

bool canUpdate(
  1. PostType type
)

Implementation

static bool canUpdate(PostType type) {
  return (type == PostType.singlePhoto) ||
      (type == PostType.singleVideo) ||
      (type == PostType.album) ||
      (type == PostType.onlyDescription) ||
      (type == PostType.html);
}