imageOk static method

bool imageOk(
  1. String? value
)

Implementation

static bool imageOk(String? value) {
  if (value == null ||
      value.trim().isEmpty ||
      !value.contains('http') ||
      value.contains('null')) {
    return false;
  }
  return true;
}