yIsNullOrEmpty function

bool yIsNullOrEmpty(
  1. String? content
)

检查为空

Implementation

bool yIsNullOrEmpty(String? content) {
  return content == null || content.isEmpty;
}