copyWith method
Creates a copy of this object with the given fields replaced.
Implementation
MediaQueryData copyWith({Size? size, EdgeInsets? padding}) {
return MediaQueryData(
size: size ?? this.size,
padding: padding ?? this.padding,
);
}