copyWith method

ActionState copyWith({
  1. Map<String, dynamic>? actions,
})

Implementation

ActionState copyWith({Map<String, dynamic>? actions}) {
  return ActionState(
    actions: actions ?? this.actions,
  );
}