file method

FilePart? file(
  1. String i
)

get single value from formFiles with the field name i

Implementation

FilePart? file(String i) => formFiles[i]?.first;