Advertisement
AbiMulya

Content Sizing Cubit State without State

Nov 16th, 2021
977
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.36 KB | None | 0 0
  1. part of 'content_sizing_cubit.dart';
  2.  
  3. class ContentSizingCubitState extends Equatable {
  4.   const ContentSizingCubitState();
  5.  
  6.   // ContentSizingCubitState copyWith({
  7.   //   double? textSize,
  8.   // }) {
  9.   //   return ContentSizingCubitState(
  10.   //     textSize: textSize ?? this.textSize,
  11.   //   );
  12.   // }
  13.  
  14.   @override
  15.   List<Object> get props => [];
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement