isNull static method

bool isNull(
  1. String? value
)

判断值是否为null

Implementation

static bool isNull(String? value) => value == null;