copyWith method

  1. @override
InverseRoundedCorner copyWith({
  1. double? p,
  2. double? n,
})
override

Implementation

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