opacity100 static method

Opacity opacity100({
  1. Key? key,
  2. required Widget child,
})

Constructs an Opacity widget with an opacity of 100%

Implementation

static Opacity opacity100({Key? key, required Widget child}) {
  return Opacity(
    key: key,
    child: child,
    opacity: 1.0,
  );
}