call method

Rec call([
  1. String? code,
  2. Symbol? group,
  3. RecOptions options = const RecOptions({})
])

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,
  );
}