copyWith method

UserAnonymousExpandable copyWith({
  1. String? operations,
})

Implementation

UserAnonymousExpandable copyWith({String? operations}) {
  return UserAnonymousExpandable(
    operations: operations ?? this.operations,
  );
}