isEmpty function

bool isEmpty(
  1. String? str
)

Author: wangys Date: 2022-10-17 11:41:18 Description: str == null || str == ''

Implementation

///str == null || str == ''
bool isEmpty(String? str) {
  return str == null || str == '';
}