size method

Image size({
  1. double? width,
  2. double? height,
})

Implementation

Image size({double? width, double? height}) {
  return copyWith(width: width, height: height);
}