isString function

bool isString(
  1. Object? object
)

Implementation

bool isString(
    Object? object
    )
{
    return object is String;
}