Size constructor

Size({
  1. required int w,
  2. required int h,
  3. required String resize,
})

Implementation

Size({
  required this.w,
  required this.h,
  required this.resize,
});