getResultValue method

String getResultValue(
  1. String name
)

Implementation

String getResultValue(String name) {
  if (name.isEmpty) {
    return '';
  }

  final isNullable = isNullableResultType();
  return isNullable ? name : '$name!';
}