supports method

  1. @override
bool supports(
  1. String id
)
override

Implementation

@override
bool supports(String id) {
  if (id == "feeds") return true;
  if (id == "feedFronts") return true;
  if (id == "feedMenus") return true;
  if (id == "posts") return true;
  if (id == "postComments") return true;
  if (id == "postLikes") return true;
  if (id == "profiles") return true;
  return false;
}