isNoSuchTableError method

  1. @override
bool isNoSuchTableError([
  1. String? table
])

True if the exception is a no such table exception

Implementation

@override
bool isNoSuchTableError([String? table]) => cause is DatabaseException
    ? (cause as DatabaseException).isNoSuchTableError(table)
    : false;