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