getEffectiveBorderWidth method

double getEffectiveBorderWidth(
  1. dynamic state
)

Get effective border width for a given state. Returns the animated border width. Override in subclasses for state-specific border widths. Accepts ComponentState enum or component-specific enum types.

Implementation

double getEffectiveBorderWidth(dynamic state) {
  return borderWidth;
}