copyWith method

AppScreenSizeState copyWith({
  1. Size? screenSize,
})

Implementation

AppScreenSizeState copyWith({
  final Size? screenSize,
}) {
  return AppScreenSizeState(
    screenSize: screenSize ?? this.screenSize,
  );
}