Resources constructor

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

Implementation

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