copyWith method
Implementation
FlutstrapVisibility copyWith({
Key? key,
Widget? child,
bool? showOnXs,
bool? showOnSm,
bool? showOnMd,
bool? showOnLg,
bool? showOnXl,
bool? showOnXxl,
Widget? fallback,
}) {
return FlutstrapVisibility(
key: key ?? this.key,
child: child ?? this.child,
showOnXs: showOnXs ?? this.showOnXs,
showOnSm: showOnSm ?? this.showOnSm,
showOnMd: showOnMd ?? this.showOnMd,
showOnLg: showOnLg ?? this.showOnLg,
showOnXl: showOnXl ?? this.showOnXl,
showOnXxl: showOnXxl ?? this.showOnXxl,
fallback: fallback ?? this.fallback,
);
}