RolesUpdate constructor

RolesUpdate({
  1. List<String> add = const [],
  2. List<String> remove = const [],
})

Returns a new RolesUpdate instance.

Implementation

RolesUpdate({
  this.add = const [],
  this.remove = const [],
});