build<TValue> abstract method

Widget build<TValue>(
  1. BuildContext context,
  2. FormMultiMediaRef<TValue> ref,
  3. FormMultiMedia<TValue> widget,
  4. List<FormMediaValue> values,
)

Build the whole thing.

Pass context the BuildContext, widget the original widget being built, and values the current values.

The callback for updating is passed to onUpdate and the callback for deleting is passed to onRemove.

全体をビルドします。

contextBuildContextwidgetにビルドされている元のWidget、valuesに現在の値を渡します。

onUpdateに更新時のコールバックとonRemoveに削除時のコールバックが渡されます。

Implementation

Widget build<TValue>(
  BuildContext context,
  FormMultiMediaRef<TValue> ref,
  FormMultiMedia<TValue> widget,
  List<FormMediaValue> values,
);