isString function

bool isString(
  1. dynamic source
)

Implementation

bool isString(dynamic source) => source is String?;