current static method

String? current(
  1. String? value
)

Validates current (must be positive)

Implementation

static String? current(String? value) {
  return positiveNumber(value);
}