OperationPayState constructor

OperationPayState({
  1. required bool isLoading,
  2. required String text,
  3. required String? errorMessage,
  4. required bool isSuccess,
  5. required bool isCanceled,
  6. required bool hasStarted,
  7. required Duration elapsed,
})

Implementation

OperationPayState({
  required this.isLoading,
  required this.text,
  required this.errorMessage,
  required this.isSuccess,
  required this.isCanceled,
  required this.hasStarted,
  required this.elapsed,
});