checkIfEntityTableExists<T> method

Future<bool> checkIfEntityTableExists<T>()

Returns true if the entity table T exists.

Implementation

Future<bool> checkIfEntityTableExists<T>() =>
    checkIfTableExists(T.toString());