copyWith method
Implementation
@override
InverseRoundedCorner copyWith({
double? p,
double? n,
}) {
return InverseRoundedCorner.elliptical(
p: p ?? this.p,
n: n ?? this.n,
);
}
@override
InverseRoundedCorner copyWith({
double? p,
double? n,
}) {
return InverseRoundedCorner.elliptical(
p: p ?? this.p,
n: n ?? this.n,
);
}