FormMultiMediaInlineDelegate constructor

const FormMultiMediaInlineDelegate({
  1. IconData addIcon = Icons.add_a_photo,
  2. IconData removeIcon = Icons.remove_circle,
})

A delegate to build FormMultiMedia with a type design that fits inline with the form.

Specify an icon for adding an item in addIcon and an icon for removing an item in removeIcon.

フォームのインラインに収まるタイプのデザインを持つFormMultiMediaを構築するためのデリゲート。

addIconに追加時のアイコン、removeIconに各項目を削除するときのアイコンを指定します。

Implementation

const FormMultiMediaInlineDelegate({
  this.addIcon = Icons.add_a_photo,
  this.removeIcon = Icons.remove_circle,
});