ListenerChangeDeviceSize constructor

ListenerChangeDeviceSize(
  1. BuildContext context, {
  2. required double orginal_width,
  3. required double orginal_height,
  4. required DeviceSizeChangeCallBack changeCallBack,
})

Implementation

ListenerChangeDeviceSize(BuildContext context, {
  required double this.orginal_width,
  required double this.orginal_height,
  // required Widget this.child,
  required DeviceSizeChangeCallBack this.changeCallBack
}) {

  _contextCreatedPage = context;
  currentPageContext = context;

  _build();
}