isNull method

Contract isNull(
  1. String? val,
  2. String key,
  3. String message
)

Implementation

Contract isNull(String? val, String key, String message) {
  if (val != null) {
    addNotificationByKeyAndMessage(key, message);
  }
  return this;
}