getFile method

dynamic getFile(
  1. String key
)

Retrieves file data associated with key from the request.

Implementation

dynamic getFile(String key) {
  var map = getAllData();
  return map['FILE'] != null ? map['FILE'][key] : null;
}