changeBinds method

  1. @override
void changeBinds(
  1. List<BindContract<Object>> newBinds
)
inherited

Change binds

Implementation

@override
void changeBinds(List<BindContract> newBinds) {
  _binds.removeWhere((element) => !element.alwaysSerialized);
  _binds.addAll(newBinds);
}