isSelfBoxModelMatch method

bool isSelfBoxModelMatch(
  1. RenderBoxModelMatcher matcher
)
inherited

Implementation

@pragma('vm:prefer-inline')
bool isSelfBoxModelMatch(RenderBoxModelMatcher matcher) {
  if (attachedRenderBoxModel != null) {
    return matcher(attachedRenderBoxModel!, attachedRenderBoxModel!.renderStyle);
  }
  return false;
}