call method
Implementation
Rec call([
String? code,
Symbol? group,
RecOptions options = const RecOptions({}),
]) {
return Rec(
code?.isNotEmpty == true
? this.code?.isNotEmpty == true
? p.join(this.code!, code)
: null
: this.code,
group ?? this.group,
this.options + options,
);
}