copyWith method
Implementation
UserExpandable copyWith(
    {String? operations, String? details, String? personalSpace}) {
  return UserExpandable(
    operations: operations ?? this.operations,
    details: details ?? this.details,
    personalSpace: personalSpace ?? this.personalSpace,
  );
}