copyWith method
Returns a copy of this OutlinedBorder that draws its outline with the
specified side, if side is non-null.
Implementation
@override
OutlinedBorder copyWith({BorderSide? side}) {
return TriangleBorder(side: side ?? this.side);
}
Returns a copy of this OutlinedBorder that draws its outline with the
specified side, if side is non-null.
@override
OutlinedBorder copyWith({BorderSide? side}) {
return TriangleBorder(side: side ?? this.side);
}