copyWith method
Implementation
FwStandardModulesAdministratorGroupLookupGroupResponse copyWith({
String? groupId,
String? name,
}) {
return FwStandardModulesAdministratorGroupLookupGroupResponse(
groupId: groupId ?? this.groupId,
name: name ?? this.name,
);
}