maybeChange method

void maybeChange(
  1. BuildContext context,
  2. T data
)

Optionally change the data of the model with the given key. Ignores if the model is read-only.

  • T The type of the data.
  • context The build context.
  • key The data key.
  • data The new data.

Implementation

void maybeChange(BuildContext context, T data) {
  MultiModel.maybeChange(context, key, data);
}