asNullable<T> function

String asNullable<T>()

Implementation

String asNullable<T>() {
  if (isNullableType<T>()) {
    return '$T';
  }

  return '$T?';
}