isEmptyString method

bool isEmptyString(
  1. dynamic value
)

Implementation

bool isEmptyString(value) => value is String && value.isEmpty;