scale0 static method

Transform scale0({
  1. Key? key,
  2. Widget? child,
})

Constructs a Transform widget with a scale of 0.0

Implementation

static Transform scale0({Key? key, Widget? child}) {
  return Transform.scale(scale: 0.0, key: key, child: child);
}