opacity10 static method

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

Constructs an Opacity widget with an opacity of 10%

Implementation

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