getStr method

String getStr(
  1. Object value
)

Implementation

String getStr(Object value) => value is String
    ? value
    : value.toString();