EzImageSetting constructor

const EzImageSetting({
  1. Key? key,
  2. required String semantics,
  3. required String prefsKey,
  4. required bool fullscreen,
  5. required String title,
  6. required String credits,
  7. required bool allowClear,
})

Creates a tool for updating the image at prefsKey's path

Implementation

const EzImageSetting({
  Key? key,
  required this.semantics,
  required this.prefsKey,
  required this.fullscreen,
  required this.title,
  required this.credits,
  required this.allowClear,
}) : super(key: key);