isNullOrEmpty property

bool get isNullOrEmpty

判断字符串是否为空

Implementation

bool get isNullOrEmpty => this == null || this!.isEmpty;