only method

  1. @override
T only({
  1. Radius? topLeft,
  2. Radius? topRight,
  3. Radius? bottomLeft,
  4. Radius? bottomRight,
})
override

Implementation

@override
T only({
  Radius? topLeft,
  Radius? topRight,
  Radius? bottomLeft,
  Radius? bottomRight,
}) {
  return builder(
    BorderRadiusGeometryDto(
      topLeft: topLeft,
      topRight: topRight,
      bottomLeft: bottomLeft,
      bottomRight: bottomRight,
    ),
  );
}