copyWith method
Implementation
Positioned copyWith({
Key? key,
double? left,
double? top,
double? right,
double? bottom,
double? width,
double? height,
Widget? child,
}) {
return Positioned(
key: key ?? this.key,
left: left ?? this.left,
top: top ?? this.top,
right: right ?? this.right,
bottom: bottom ?? this.bottom,
width: width ?? this.width,
height: height ?? this.height,
child: child ?? this.child,
);
}