scale150 static method

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

Constructs a Transform widget with a scale of 1.5

Implementation

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