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