hasDataValue method

bool hasDataValue(
  1. String key
)

Checks if key exists and has a non-empty value in the request data.

Implementation

bool hasDataValue(String key) =>
    getAllData().containsKey(key) && this[key].isNotEmpty;