backdropFilter static method

FloretParent<BackdropFilter> backdropFilter(
  1. ImageFilter filter
)

Implementation

static FloretParent<BackdropFilter> backdropFilter(ImageFilter filter) =>
    (Widget child) => BackdropFilter(
          child: child,
          filter: filter,
        );