fnLow function

dynamic fnLow(
  1. dynamic value
)

Implementation

dynamic fnLow(dynamic value) {
  if (value is List) return 0;
  return 0;
}