attributeToString method

String? attributeToString(
  1. Object? inputValue
)

Implementation

String? attributeToString(Object? inputValue) {
  if (inputValue != null) {
    return inputValue.toString();
  }
  return null;
}