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