copyWith method
Implementation
ActorsMap copyWith(
{List<String>? group, List<String>? groupId, List<String>? user}) {
return ActorsMap(
group: group ?? this.group,
groupId: groupId ?? this.groupId,
user: user ?? this.user,
);
}
ActorsMap copyWith(
{List<String>? group, List<String>? groupId, List<String>? user}) {
return ActorsMap(
group: group ?? this.group,
groupId: groupId ?? this.groupId,
user: user ?? this.user,
);
}