scale95 static method

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

Constructs a Transform widget with a scale of 0.95

Implementation

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