Patch constructor

Patch({
  1. required String small,
  2. required String large,
})

Implementation

Patch({required String small, required String large})
    : _small = small, // Initialize using the initializer list
      _large = large;