UseCaseState constructor

const UseCaseState({
  1. required String name,
  2. Map<String, Type>? arguments,
})

Implementation

const UseCaseState({
  required this.name,
  this.arguments,
});