hubble static method

GradientMask hubble({
  1. required Widget child,
})

Implementation

static GradientMask hubble({required Widget child}) {
  return GradientMask(
    gradient: hubbleGradient(),
    child: child,
  );
}