operator - method
Implementation
AntdMaskHole operator -(AntdMaskHole other) {
return AntdMaskHole(
offset: offset - other.offset,
size:
Size(size.width - other.size.width, size.height - other.size.height),
padding: _subtractEdgeInsets(padding, other.padding),
radius: _subtractDouble(radius, other.radius),
);
}