isRowResized method
Implementation
bool isRowResized(FluentDocument document, FluentTable table, FluentRow row) {
for (final plugin in plugins) {
if (plugin.isRowResized(document, table, row)) return true;
}
return false;
}
bool isRowResized(FluentDocument document, FluentTable table, FluentRow row) {
for (final plugin in plugins) {
if (plugin.isRowResized(document, table, row)) return true;
}
return false;
}