tapOpen method

void tapOpen(
  1. BuildContext context,
  2. VEntity ent
)

Implementation

void tapOpen(BuildContext context, VEntity ent) => ent is VFolder
    ? openFolder(ent)
    : ent is VFile
        ? ent.onOpen != null
            ? ent.onOpen!(context)
            : null
        : null;