Resources constructor

Resources({
  1. bool? listChanged,
  2. bool? subscribe,
})

Implementation

factory Resources({bool? listChanged, bool? subscribe}) => Resources.fromMap({
  if (listChanged != null) Keys.listChanged: listChanged,
  if (subscribe != null) Keys.subscribe: subscribe,
});