iswitchArgFromOtherwise method

String iswitchArgFromOtherwise(
  1. String otherwise
)

Implementation

String iswitchArgFromOtherwise(String otherwise) {
  final _otherwise = this.type.isUnit ? otherwise : '(${this.type.typeRepr} _) => $otherwise()';
  return '$name: $name ?? $_otherwise,';
}