checkHumo static method

bool checkHumo(
  1. String? value
)

Implementation

static bool checkHumo(String? value) {
  final result = value?.substring(0, 4);
  return result != "8600";
}