yIsNotEmpty function

bool yIsNotEmpty(
  1. String? content
)

检查非空

Implementation

bool yIsNotEmpty(String? content) {
  return content != null && content.isNotEmpty;
}