isRowResized method

bool isRowResized(
  1. FluentDocument document,
  2. FluentTable table,
  3. FluentRow row
)

Implementation

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