action static method
Factory that return a Atom
Atom<RxVoid>(rxVoid); => Atom.action();
Implementation
static Atom<RxVoid> action({
String? key,
PipeCallback<RxVoid>? pipe,
}) {
return Atom(
rxVoid,
key: key,
pipe: pipe,
);
}
Factory that return a Atom
Atom<RxVoid>(rxVoid); => Atom.action();
static Atom<RxVoid> action({
String? key,
PipeCallback<RxVoid>? pipe,
}) {
return Atom(
rxVoid,
key: key,
pipe: pipe,
);
}