autosize method

bool autosize(
  1. String? mode
)

Implementation

bool autosize(String? mode) {
  try {
    var view = findListenerOfExactType(TableViewState);
    if (view is TableViewState) {
      view.autosize(mode);
    }
  } catch (e) {
    Log().exception(e);
  }
  return true;
}