scale110 static method

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

Constructs a Transform widget with a scale of 1.1

Implementation

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