scale50 static method

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

Constructs a Transform widget with a scale of 0.5

Implementation

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