build method

  1. @override
Widget build(
  1. Context context
)
override

Implementation

@override
Widget build(Context context) {
  return SizedBox.expand(
    child: FittedBox(
      fit: fit,
      child: Transform.rotateBox(
        angle: angle,
        child: child,
      ),
    ),
  );
}