scale75 static method

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

Constructs a Transform widget with a scale of 0.75

Implementation

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