Response constructor

Response({
  1. required Widget child,
  2. double originalScreenHeight = 759,
  3. double originalScreenWidth = 392,
})

Response is an initialization Class for the whole package.

We are using it to get constraints and orientation information about the currently running app.

Implementation

Response({
  required this.child,
  this.originalScreenHeight = 759,
  this.originalScreenWidth = 392,
});