scale105 static method

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

Constructs a Transform widget with a scale of 1.05

Implementation

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