copyWithThemeIfNull method
Implementation
NeumorphismBorder copyWithThemeIfNull({Color? color, double? width}) {
return NeumorphismBorder(
isEnabled: isEnabled,
color: this.color ?? color,
width: this.width ?? width,
);
}
NeumorphismBorder copyWithThemeIfNull({Color? color, double? width}) {
return NeumorphismBorder(
isEnabled: isEnabled,
color: this.color ?? color,
width: this.width ?? width,
);
}