WidgetStateInputBorder.fromMap constructor
Creates a WidgetStateOutlinedBorder from a WidgetStateMap.
This constructor's resolve method finds the first MapEntry whose key is satisfied by the set of states, and returns its associated value. It should only be used for fields that support WidgetStateOutlinedBorder objects, such as InputDecoration.border (throws an error if used as a regular OutlinedBorder).
To prevent a situation where each WidgetStatesConstraint isn't satisfied by the given set of states, consider adding WidgetState.any as the final WidgetStateMap key.
Implementation
const factory WidgetStateInputBorder.fromMap(WidgetStateMap<InputBorder> map) =
_WidgetInputBorderMapper;