postable method

Future<bool> postable(
  1. Post post
)

Implementation

Future<bool> postable(hive_pack.Post post) async {
  if (!System().connected) return false;
  return await formPostable(post.formKey);
}