dropTableIfExists method

  1. @Deprecated('Use drop() instead')
Future<void> dropTableIfExists(
  1. String tableName
)

Implementation

@Deprecated('Use drop() instead')
Future<void> dropTableIfExists(String tableName) async {
  await drop(tableName);
}