imageKey property

String get imageKey

Implementation

String              get imageKey    =>  _imageKey;
set imageKey (String name)

Image name for MultipartFile, is the same key for posting like {"imageKey": image}

Implementation

set imageKey(String name) {
  _imageKey = name;
  notifyListeners();
}