OptionalSize constructor

OptionalSize(
  1. double? width,
  2. double? height
)

Implementation

OptionalSize(
  this.width,
  this.height,
);