1267 lines
41 KiB
Dart
1267 lines
41 KiB
Dart
// coverage:ignore-file
|
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
// ignore_for_file: type=lint
|
|
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
|
|
|
|
part of 'account.dart';
|
|
|
|
// **************************************************************************
|
|
// FreezedGenerator
|
|
// **************************************************************************
|
|
|
|
T _$identity<T>(T value) => value;
|
|
|
|
final _privateConstructorUsedError = UnsupportedError(
|
|
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');
|
|
|
|
SnAccount _$SnAccountFromJson(Map<String, dynamic> json) {
|
|
return _SnAccount.fromJson(json);
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$SnAccount {
|
|
int get id => throw _privateConstructorUsedError;
|
|
int? get affiliatedId => throw _privateConstructorUsedError;
|
|
int? get affiliatedTo => throw _privateConstructorUsedError;
|
|
int? get automatedBy => throw _privateConstructorUsedError;
|
|
int? get automatedId => throw _privateConstructorUsedError;
|
|
String get avatar => throw _privateConstructorUsedError;
|
|
String get banner => throw _privateConstructorUsedError;
|
|
DateTime? get confirmedAt => throw _privateConstructorUsedError;
|
|
List<SnAccountContact> get contacts => throw _privateConstructorUsedError;
|
|
DateTime get createdAt => throw _privateConstructorUsedError;
|
|
DateTime? get deletedAt => throw _privateConstructorUsedError;
|
|
String get description => throw _privateConstructorUsedError;
|
|
String get name => throw _privateConstructorUsedError;
|
|
String get nick => throw _privateConstructorUsedError;
|
|
Map<String, dynamic> get permNodes => throw _privateConstructorUsedError;
|
|
SnAccountProfile? get profile => throw _privateConstructorUsedError;
|
|
DateTime? get suspendedAt => throw _privateConstructorUsedError;
|
|
DateTime get updatedAt => throw _privateConstructorUsedError;
|
|
|
|
/// Serializes this SnAccount to a JSON map.
|
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of SnAccount
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$SnAccountCopyWith<SnAccount> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $SnAccountCopyWith<$Res> {
|
|
factory $SnAccountCopyWith(SnAccount value, $Res Function(SnAccount) then) =
|
|
_$SnAccountCopyWithImpl<$Res, SnAccount>;
|
|
@useResult
|
|
$Res call(
|
|
{int id,
|
|
int? affiliatedId,
|
|
int? affiliatedTo,
|
|
int? automatedBy,
|
|
int? automatedId,
|
|
String avatar,
|
|
String banner,
|
|
DateTime? confirmedAt,
|
|
List<SnAccountContact> contacts,
|
|
DateTime createdAt,
|
|
DateTime? deletedAt,
|
|
String description,
|
|
String name,
|
|
String nick,
|
|
Map<String, dynamic> permNodes,
|
|
SnAccountProfile? profile,
|
|
DateTime? suspendedAt,
|
|
DateTime updatedAt});
|
|
|
|
$SnAccountProfileCopyWith<$Res>? get profile;
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$SnAccountCopyWithImpl<$Res, $Val extends SnAccount>
|
|
implements $SnAccountCopyWith<$Res> {
|
|
_$SnAccountCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of SnAccount
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? id = null,
|
|
Object? affiliatedId = freezed,
|
|
Object? affiliatedTo = freezed,
|
|
Object? automatedBy = freezed,
|
|
Object? automatedId = freezed,
|
|
Object? avatar = null,
|
|
Object? banner = null,
|
|
Object? confirmedAt = freezed,
|
|
Object? contacts = null,
|
|
Object? createdAt = null,
|
|
Object? deletedAt = freezed,
|
|
Object? description = null,
|
|
Object? name = null,
|
|
Object? nick = null,
|
|
Object? permNodes = null,
|
|
Object? profile = freezed,
|
|
Object? suspendedAt = freezed,
|
|
Object? updatedAt = null,
|
|
}) {
|
|
return _then(_value.copyWith(
|
|
id: null == id
|
|
? _value.id
|
|
: id // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
affiliatedId: freezed == affiliatedId
|
|
? _value.affiliatedId
|
|
: affiliatedId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
affiliatedTo: freezed == affiliatedTo
|
|
? _value.affiliatedTo
|
|
: affiliatedTo // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
automatedBy: freezed == automatedBy
|
|
? _value.automatedBy
|
|
: automatedBy // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
automatedId: freezed == automatedId
|
|
? _value.automatedId
|
|
: automatedId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
avatar: null == avatar
|
|
? _value.avatar
|
|
: avatar // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
banner: null == banner
|
|
? _value.banner
|
|
: banner // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
confirmedAt: freezed == confirmedAt
|
|
? _value.confirmedAt
|
|
: confirmedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
contacts: null == contacts
|
|
? _value.contacts
|
|
: contacts // ignore: cast_nullable_to_non_nullable
|
|
as List<SnAccountContact>,
|
|
createdAt: null == createdAt
|
|
? _value.createdAt
|
|
: createdAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
deletedAt: freezed == deletedAt
|
|
? _value.deletedAt
|
|
: deletedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
description: null == description
|
|
? _value.description
|
|
: description // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
name: null == name
|
|
? _value.name
|
|
: name // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
nick: null == nick
|
|
? _value.nick
|
|
: nick // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
permNodes: null == permNodes
|
|
? _value.permNodes
|
|
: permNodes // ignore: cast_nullable_to_non_nullable
|
|
as Map<String, dynamic>,
|
|
profile: freezed == profile
|
|
? _value.profile
|
|
: profile // ignore: cast_nullable_to_non_nullable
|
|
as SnAccountProfile?,
|
|
suspendedAt: freezed == suspendedAt
|
|
? _value.suspendedAt
|
|
: suspendedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
updatedAt: null == updatedAt
|
|
? _value.updatedAt
|
|
: updatedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
) as $Val);
|
|
}
|
|
|
|
/// Create a copy of SnAccount
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
$SnAccountProfileCopyWith<$Res>? get profile {
|
|
if (_value.profile == null) {
|
|
return null;
|
|
}
|
|
|
|
return $SnAccountProfileCopyWith<$Res>(_value.profile!, (value) {
|
|
return _then(_value.copyWith(profile: value) as $Val);
|
|
});
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$SnAccountImplCopyWith<$Res>
|
|
implements $SnAccountCopyWith<$Res> {
|
|
factory _$$SnAccountImplCopyWith(
|
|
_$SnAccountImpl value, $Res Function(_$SnAccountImpl) then) =
|
|
__$$SnAccountImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call(
|
|
{int id,
|
|
int? affiliatedId,
|
|
int? affiliatedTo,
|
|
int? automatedBy,
|
|
int? automatedId,
|
|
String avatar,
|
|
String banner,
|
|
DateTime? confirmedAt,
|
|
List<SnAccountContact> contacts,
|
|
DateTime createdAt,
|
|
DateTime? deletedAt,
|
|
String description,
|
|
String name,
|
|
String nick,
|
|
Map<String, dynamic> permNodes,
|
|
SnAccountProfile? profile,
|
|
DateTime? suspendedAt,
|
|
DateTime updatedAt});
|
|
|
|
@override
|
|
$SnAccountProfileCopyWith<$Res>? get profile;
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$SnAccountImplCopyWithImpl<$Res>
|
|
extends _$SnAccountCopyWithImpl<$Res, _$SnAccountImpl>
|
|
implements _$$SnAccountImplCopyWith<$Res> {
|
|
__$$SnAccountImplCopyWithImpl(
|
|
_$SnAccountImpl _value, $Res Function(_$SnAccountImpl) _then)
|
|
: super(_value, _then);
|
|
|
|
/// Create a copy of SnAccount
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? id = null,
|
|
Object? affiliatedId = freezed,
|
|
Object? affiliatedTo = freezed,
|
|
Object? automatedBy = freezed,
|
|
Object? automatedId = freezed,
|
|
Object? avatar = null,
|
|
Object? banner = null,
|
|
Object? confirmedAt = freezed,
|
|
Object? contacts = null,
|
|
Object? createdAt = null,
|
|
Object? deletedAt = freezed,
|
|
Object? description = null,
|
|
Object? name = null,
|
|
Object? nick = null,
|
|
Object? permNodes = null,
|
|
Object? profile = freezed,
|
|
Object? suspendedAt = freezed,
|
|
Object? updatedAt = null,
|
|
}) {
|
|
return _then(_$SnAccountImpl(
|
|
id: null == id
|
|
? _value.id
|
|
: id // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
affiliatedId: freezed == affiliatedId
|
|
? _value.affiliatedId
|
|
: affiliatedId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
affiliatedTo: freezed == affiliatedTo
|
|
? _value.affiliatedTo
|
|
: affiliatedTo // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
automatedBy: freezed == automatedBy
|
|
? _value.automatedBy
|
|
: automatedBy // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
automatedId: freezed == automatedId
|
|
? _value.automatedId
|
|
: automatedId // ignore: cast_nullable_to_non_nullable
|
|
as int?,
|
|
avatar: null == avatar
|
|
? _value.avatar
|
|
: avatar // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
banner: null == banner
|
|
? _value.banner
|
|
: banner // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
confirmedAt: freezed == confirmedAt
|
|
? _value.confirmedAt
|
|
: confirmedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
contacts: null == contacts
|
|
? _value._contacts
|
|
: contacts // ignore: cast_nullable_to_non_nullable
|
|
as List<SnAccountContact>,
|
|
createdAt: null == createdAt
|
|
? _value.createdAt
|
|
: createdAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
deletedAt: freezed == deletedAt
|
|
? _value.deletedAt
|
|
: deletedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
description: null == description
|
|
? _value.description
|
|
: description // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
name: null == name
|
|
? _value.name
|
|
: name // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
nick: null == nick
|
|
? _value.nick
|
|
: nick // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
permNodes: null == permNodes
|
|
? _value._permNodes
|
|
: permNodes // ignore: cast_nullable_to_non_nullable
|
|
as Map<String, dynamic>,
|
|
profile: freezed == profile
|
|
? _value.profile
|
|
: profile // ignore: cast_nullable_to_non_nullable
|
|
as SnAccountProfile?,
|
|
suspendedAt: freezed == suspendedAt
|
|
? _value.suspendedAt
|
|
: suspendedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
updatedAt: null == updatedAt
|
|
? _value.updatedAt
|
|
: updatedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
));
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
@JsonSerializable()
|
|
class _$SnAccountImpl implements _SnAccount {
|
|
const _$SnAccountImpl(
|
|
{required this.id,
|
|
required this.affiliatedId,
|
|
required this.affiliatedTo,
|
|
required this.automatedBy,
|
|
required this.automatedId,
|
|
required this.avatar,
|
|
required this.banner,
|
|
required this.confirmedAt,
|
|
required final List<SnAccountContact> contacts,
|
|
required this.createdAt,
|
|
required this.deletedAt,
|
|
required this.description,
|
|
required this.name,
|
|
required this.nick,
|
|
required final Map<String, dynamic> permNodes,
|
|
required this.profile,
|
|
required this.suspendedAt,
|
|
required this.updatedAt})
|
|
: _contacts = contacts,
|
|
_permNodes = permNodes;
|
|
|
|
factory _$SnAccountImpl.fromJson(Map<String, dynamic> json) =>
|
|
_$$SnAccountImplFromJson(json);
|
|
|
|
@override
|
|
final int id;
|
|
@override
|
|
final int? affiliatedId;
|
|
@override
|
|
final int? affiliatedTo;
|
|
@override
|
|
final int? automatedBy;
|
|
@override
|
|
final int? automatedId;
|
|
@override
|
|
final String avatar;
|
|
@override
|
|
final String banner;
|
|
@override
|
|
final DateTime? confirmedAt;
|
|
final List<SnAccountContact> _contacts;
|
|
@override
|
|
List<SnAccountContact> get contacts {
|
|
if (_contacts is EqualUnmodifiableListView) return _contacts;
|
|
// ignore: implicit_dynamic_type
|
|
return EqualUnmodifiableListView(_contacts);
|
|
}
|
|
|
|
@override
|
|
final DateTime createdAt;
|
|
@override
|
|
final DateTime? deletedAt;
|
|
@override
|
|
final String description;
|
|
@override
|
|
final String name;
|
|
@override
|
|
final String nick;
|
|
final Map<String, dynamic> _permNodes;
|
|
@override
|
|
Map<String, dynamic> get permNodes {
|
|
if (_permNodes is EqualUnmodifiableMapView) return _permNodes;
|
|
// ignore: implicit_dynamic_type
|
|
return EqualUnmodifiableMapView(_permNodes);
|
|
}
|
|
|
|
@override
|
|
final SnAccountProfile? profile;
|
|
@override
|
|
final DateTime? suspendedAt;
|
|
@override
|
|
final DateTime updatedAt;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'SnAccount(id: $id, affiliatedId: $affiliatedId, affiliatedTo: $affiliatedTo, automatedBy: $automatedBy, automatedId: $automatedId, avatar: $avatar, banner: $banner, confirmedAt: $confirmedAt, contacts: $contacts, createdAt: $createdAt, deletedAt: $deletedAt, description: $description, name: $name, nick: $nick, permNodes: $permNodes, profile: $profile, suspendedAt: $suspendedAt, updatedAt: $updatedAt)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$SnAccountImpl &&
|
|
(identical(other.id, id) || other.id == id) &&
|
|
(identical(other.affiliatedId, affiliatedId) ||
|
|
other.affiliatedId == affiliatedId) &&
|
|
(identical(other.affiliatedTo, affiliatedTo) ||
|
|
other.affiliatedTo == affiliatedTo) &&
|
|
(identical(other.automatedBy, automatedBy) ||
|
|
other.automatedBy == automatedBy) &&
|
|
(identical(other.automatedId, automatedId) ||
|
|
other.automatedId == automatedId) &&
|
|
(identical(other.avatar, avatar) || other.avatar == avatar) &&
|
|
(identical(other.banner, banner) || other.banner == banner) &&
|
|
(identical(other.confirmedAt, confirmedAt) ||
|
|
other.confirmedAt == confirmedAt) &&
|
|
const DeepCollectionEquality().equals(other._contacts, _contacts) &&
|
|
(identical(other.createdAt, createdAt) ||
|
|
other.createdAt == createdAt) &&
|
|
(identical(other.deletedAt, deletedAt) ||
|
|
other.deletedAt == deletedAt) &&
|
|
(identical(other.description, description) ||
|
|
other.description == description) &&
|
|
(identical(other.name, name) || other.name == name) &&
|
|
(identical(other.nick, nick) || other.nick == nick) &&
|
|
const DeepCollectionEquality()
|
|
.equals(other._permNodes, _permNodes) &&
|
|
(identical(other.profile, profile) || other.profile == profile) &&
|
|
(identical(other.suspendedAt, suspendedAt) ||
|
|
other.suspendedAt == suspendedAt) &&
|
|
(identical(other.updatedAt, updatedAt) ||
|
|
other.updatedAt == updatedAt));
|
|
}
|
|
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
int get hashCode => Object.hash(
|
|
runtimeType,
|
|
id,
|
|
affiliatedId,
|
|
affiliatedTo,
|
|
automatedBy,
|
|
automatedId,
|
|
avatar,
|
|
banner,
|
|
confirmedAt,
|
|
const DeepCollectionEquality().hash(_contacts),
|
|
createdAt,
|
|
deletedAt,
|
|
description,
|
|
name,
|
|
nick,
|
|
const DeepCollectionEquality().hash(_permNodes),
|
|
profile,
|
|
suspendedAt,
|
|
updatedAt);
|
|
|
|
/// Create a copy of SnAccount
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$SnAccountImplCopyWith<_$SnAccountImpl> get copyWith =>
|
|
__$$SnAccountImplCopyWithImpl<_$SnAccountImpl>(this, _$identity);
|
|
|
|
@override
|
|
Map<String, dynamic> toJson() {
|
|
return _$$SnAccountImplToJson(
|
|
this,
|
|
);
|
|
}
|
|
}
|
|
|
|
abstract class _SnAccount implements SnAccount {
|
|
const factory _SnAccount(
|
|
{required final int id,
|
|
required final int? affiliatedId,
|
|
required final int? affiliatedTo,
|
|
required final int? automatedBy,
|
|
required final int? automatedId,
|
|
required final String avatar,
|
|
required final String banner,
|
|
required final DateTime? confirmedAt,
|
|
required final List<SnAccountContact> contacts,
|
|
required final DateTime createdAt,
|
|
required final DateTime? deletedAt,
|
|
required final String description,
|
|
required final String name,
|
|
required final String nick,
|
|
required final Map<String, dynamic> permNodes,
|
|
required final SnAccountProfile? profile,
|
|
required final DateTime? suspendedAt,
|
|
required final DateTime updatedAt}) = _$SnAccountImpl;
|
|
|
|
factory _SnAccount.fromJson(Map<String, dynamic> json) =
|
|
_$SnAccountImpl.fromJson;
|
|
|
|
@override
|
|
int get id;
|
|
@override
|
|
int? get affiliatedId;
|
|
@override
|
|
int? get affiliatedTo;
|
|
@override
|
|
int? get automatedBy;
|
|
@override
|
|
int? get automatedId;
|
|
@override
|
|
String get avatar;
|
|
@override
|
|
String get banner;
|
|
@override
|
|
DateTime? get confirmedAt;
|
|
@override
|
|
List<SnAccountContact> get contacts;
|
|
@override
|
|
DateTime get createdAt;
|
|
@override
|
|
DateTime? get deletedAt;
|
|
@override
|
|
String get description;
|
|
@override
|
|
String get name;
|
|
@override
|
|
String get nick;
|
|
@override
|
|
Map<String, dynamic> get permNodes;
|
|
@override
|
|
SnAccountProfile? get profile;
|
|
@override
|
|
DateTime? get suspendedAt;
|
|
@override
|
|
DateTime get updatedAt;
|
|
|
|
/// Create a copy of SnAccount
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$SnAccountImplCopyWith<_$SnAccountImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
SnAccountContact _$SnAccountContactFromJson(Map<String, dynamic> json) {
|
|
return _SnAccountContact.fromJson(json);
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$SnAccountContact {
|
|
int get accountId => throw _privateConstructorUsedError;
|
|
String get content => throw _privateConstructorUsedError;
|
|
DateTime get createdAt => throw _privateConstructorUsedError;
|
|
DateTime? get deletedAt => throw _privateConstructorUsedError;
|
|
int get id => throw _privateConstructorUsedError;
|
|
bool get isPrimary => throw _privateConstructorUsedError;
|
|
bool get isPublic => throw _privateConstructorUsedError;
|
|
int get type => throw _privateConstructorUsedError;
|
|
DateTime get updatedAt => throw _privateConstructorUsedError;
|
|
DateTime? get verifiedAt => throw _privateConstructorUsedError;
|
|
|
|
/// Serializes this SnAccountContact to a JSON map.
|
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of SnAccountContact
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$SnAccountContactCopyWith<SnAccountContact> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $SnAccountContactCopyWith<$Res> {
|
|
factory $SnAccountContactCopyWith(
|
|
SnAccountContact value, $Res Function(SnAccountContact) then) =
|
|
_$SnAccountContactCopyWithImpl<$Res, SnAccountContact>;
|
|
@useResult
|
|
$Res call(
|
|
{int accountId,
|
|
String content,
|
|
DateTime createdAt,
|
|
DateTime? deletedAt,
|
|
int id,
|
|
bool isPrimary,
|
|
bool isPublic,
|
|
int type,
|
|
DateTime updatedAt,
|
|
DateTime? verifiedAt});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$SnAccountContactCopyWithImpl<$Res, $Val extends SnAccountContact>
|
|
implements $SnAccountContactCopyWith<$Res> {
|
|
_$SnAccountContactCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of SnAccountContact
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? accountId = null,
|
|
Object? content = null,
|
|
Object? createdAt = null,
|
|
Object? deletedAt = freezed,
|
|
Object? id = null,
|
|
Object? isPrimary = null,
|
|
Object? isPublic = null,
|
|
Object? type = null,
|
|
Object? updatedAt = null,
|
|
Object? verifiedAt = freezed,
|
|
}) {
|
|
return _then(_value.copyWith(
|
|
accountId: null == accountId
|
|
? _value.accountId
|
|
: accountId // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
content: null == content
|
|
? _value.content
|
|
: content // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
createdAt: null == createdAt
|
|
? _value.createdAt
|
|
: createdAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
deletedAt: freezed == deletedAt
|
|
? _value.deletedAt
|
|
: deletedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
id: null == id
|
|
? _value.id
|
|
: id // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
isPrimary: null == isPrimary
|
|
? _value.isPrimary
|
|
: isPrimary // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
isPublic: null == isPublic
|
|
? _value.isPublic
|
|
: isPublic // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
type: null == type
|
|
? _value.type
|
|
: type // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
updatedAt: null == updatedAt
|
|
? _value.updatedAt
|
|
: updatedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
verifiedAt: freezed == verifiedAt
|
|
? _value.verifiedAt
|
|
: verifiedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
) as $Val);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$SnAccountContactImplCopyWith<$Res>
|
|
implements $SnAccountContactCopyWith<$Res> {
|
|
factory _$$SnAccountContactImplCopyWith(_$SnAccountContactImpl value,
|
|
$Res Function(_$SnAccountContactImpl) then) =
|
|
__$$SnAccountContactImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call(
|
|
{int accountId,
|
|
String content,
|
|
DateTime createdAt,
|
|
DateTime? deletedAt,
|
|
int id,
|
|
bool isPrimary,
|
|
bool isPublic,
|
|
int type,
|
|
DateTime updatedAt,
|
|
DateTime? verifiedAt});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$SnAccountContactImplCopyWithImpl<$Res>
|
|
extends _$SnAccountContactCopyWithImpl<$Res, _$SnAccountContactImpl>
|
|
implements _$$SnAccountContactImplCopyWith<$Res> {
|
|
__$$SnAccountContactImplCopyWithImpl(_$SnAccountContactImpl _value,
|
|
$Res Function(_$SnAccountContactImpl) _then)
|
|
: super(_value, _then);
|
|
|
|
/// Create a copy of SnAccountContact
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? accountId = null,
|
|
Object? content = null,
|
|
Object? createdAt = null,
|
|
Object? deletedAt = freezed,
|
|
Object? id = null,
|
|
Object? isPrimary = null,
|
|
Object? isPublic = null,
|
|
Object? type = null,
|
|
Object? updatedAt = null,
|
|
Object? verifiedAt = freezed,
|
|
}) {
|
|
return _then(_$SnAccountContactImpl(
|
|
accountId: null == accountId
|
|
? _value.accountId
|
|
: accountId // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
content: null == content
|
|
? _value.content
|
|
: content // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
createdAt: null == createdAt
|
|
? _value.createdAt
|
|
: createdAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
deletedAt: freezed == deletedAt
|
|
? _value.deletedAt
|
|
: deletedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
id: null == id
|
|
? _value.id
|
|
: id // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
isPrimary: null == isPrimary
|
|
? _value.isPrimary
|
|
: isPrimary // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
isPublic: null == isPublic
|
|
? _value.isPublic
|
|
: isPublic // ignore: cast_nullable_to_non_nullable
|
|
as bool,
|
|
type: null == type
|
|
? _value.type
|
|
: type // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
updatedAt: null == updatedAt
|
|
? _value.updatedAt
|
|
: updatedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
verifiedAt: freezed == verifiedAt
|
|
? _value.verifiedAt
|
|
: verifiedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
));
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
@JsonSerializable()
|
|
class _$SnAccountContactImpl implements _SnAccountContact {
|
|
const _$SnAccountContactImpl(
|
|
{required this.accountId,
|
|
required this.content,
|
|
required this.createdAt,
|
|
required this.deletedAt,
|
|
required this.id,
|
|
required this.isPrimary,
|
|
required this.isPublic,
|
|
required this.type,
|
|
required this.updatedAt,
|
|
required this.verifiedAt});
|
|
|
|
factory _$SnAccountContactImpl.fromJson(Map<String, dynamic> json) =>
|
|
_$$SnAccountContactImplFromJson(json);
|
|
|
|
@override
|
|
final int accountId;
|
|
@override
|
|
final String content;
|
|
@override
|
|
final DateTime createdAt;
|
|
@override
|
|
final DateTime? deletedAt;
|
|
@override
|
|
final int id;
|
|
@override
|
|
final bool isPrimary;
|
|
@override
|
|
final bool isPublic;
|
|
@override
|
|
final int type;
|
|
@override
|
|
final DateTime updatedAt;
|
|
@override
|
|
final DateTime? verifiedAt;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'SnAccountContact(accountId: $accountId, content: $content, createdAt: $createdAt, deletedAt: $deletedAt, id: $id, isPrimary: $isPrimary, isPublic: $isPublic, type: $type, updatedAt: $updatedAt, verifiedAt: $verifiedAt)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$SnAccountContactImpl &&
|
|
(identical(other.accountId, accountId) ||
|
|
other.accountId == accountId) &&
|
|
(identical(other.content, content) || other.content == content) &&
|
|
(identical(other.createdAt, createdAt) ||
|
|
other.createdAt == createdAt) &&
|
|
(identical(other.deletedAt, deletedAt) ||
|
|
other.deletedAt == deletedAt) &&
|
|
(identical(other.id, id) || other.id == id) &&
|
|
(identical(other.isPrimary, isPrimary) ||
|
|
other.isPrimary == isPrimary) &&
|
|
(identical(other.isPublic, isPublic) ||
|
|
other.isPublic == isPublic) &&
|
|
(identical(other.type, type) || other.type == type) &&
|
|
(identical(other.updatedAt, updatedAt) ||
|
|
other.updatedAt == updatedAt) &&
|
|
(identical(other.verifiedAt, verifiedAt) ||
|
|
other.verifiedAt == verifiedAt));
|
|
}
|
|
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
int get hashCode => Object.hash(runtimeType, accountId, content, createdAt,
|
|
deletedAt, id, isPrimary, isPublic, type, updatedAt, verifiedAt);
|
|
|
|
/// Create a copy of SnAccountContact
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$SnAccountContactImplCopyWith<_$SnAccountContactImpl> get copyWith =>
|
|
__$$SnAccountContactImplCopyWithImpl<_$SnAccountContactImpl>(
|
|
this, _$identity);
|
|
|
|
@override
|
|
Map<String, dynamic> toJson() {
|
|
return _$$SnAccountContactImplToJson(
|
|
this,
|
|
);
|
|
}
|
|
}
|
|
|
|
abstract class _SnAccountContact implements SnAccountContact {
|
|
const factory _SnAccountContact(
|
|
{required final int accountId,
|
|
required final String content,
|
|
required final DateTime createdAt,
|
|
required final DateTime? deletedAt,
|
|
required final int id,
|
|
required final bool isPrimary,
|
|
required final bool isPublic,
|
|
required final int type,
|
|
required final DateTime updatedAt,
|
|
required final DateTime? verifiedAt}) = _$SnAccountContactImpl;
|
|
|
|
factory _SnAccountContact.fromJson(Map<String, dynamic> json) =
|
|
_$SnAccountContactImpl.fromJson;
|
|
|
|
@override
|
|
int get accountId;
|
|
@override
|
|
String get content;
|
|
@override
|
|
DateTime get createdAt;
|
|
@override
|
|
DateTime? get deletedAt;
|
|
@override
|
|
int get id;
|
|
@override
|
|
bool get isPrimary;
|
|
@override
|
|
bool get isPublic;
|
|
@override
|
|
int get type;
|
|
@override
|
|
DateTime get updatedAt;
|
|
@override
|
|
DateTime? get verifiedAt;
|
|
|
|
/// Create a copy of SnAccountContact
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$SnAccountContactImplCopyWith<_$SnAccountContactImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
SnAccountProfile _$SnAccountProfileFromJson(Map<String, dynamic> json) {
|
|
return _SnAccountProfile.fromJson(json);
|
|
}
|
|
|
|
/// @nodoc
|
|
mixin _$SnAccountProfile {
|
|
int get id => throw _privateConstructorUsedError;
|
|
int get accountId => throw _privateConstructorUsedError;
|
|
DateTime? get birthday => throw _privateConstructorUsedError;
|
|
DateTime get createdAt => throw _privateConstructorUsedError;
|
|
DateTime? get deletedAt => throw _privateConstructorUsedError;
|
|
int get experience => throw _privateConstructorUsedError;
|
|
String get firstName => throw _privateConstructorUsedError;
|
|
String get lastName => throw _privateConstructorUsedError;
|
|
DateTime? get lastSeenAt => throw _privateConstructorUsedError;
|
|
DateTime get updatedAt => throw _privateConstructorUsedError;
|
|
|
|
/// Serializes this SnAccountProfile to a JSON map.
|
|
Map<String, dynamic> toJson() => throw _privateConstructorUsedError;
|
|
|
|
/// Create a copy of SnAccountProfile
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
$SnAccountProfileCopyWith<SnAccountProfile> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class $SnAccountProfileCopyWith<$Res> {
|
|
factory $SnAccountProfileCopyWith(
|
|
SnAccountProfile value, $Res Function(SnAccountProfile) then) =
|
|
_$SnAccountProfileCopyWithImpl<$Res, SnAccountProfile>;
|
|
@useResult
|
|
$Res call(
|
|
{int id,
|
|
int accountId,
|
|
DateTime? birthday,
|
|
DateTime createdAt,
|
|
DateTime? deletedAt,
|
|
int experience,
|
|
String firstName,
|
|
String lastName,
|
|
DateTime? lastSeenAt,
|
|
DateTime updatedAt});
|
|
}
|
|
|
|
/// @nodoc
|
|
class _$SnAccountProfileCopyWithImpl<$Res, $Val extends SnAccountProfile>
|
|
implements $SnAccountProfileCopyWith<$Res> {
|
|
_$SnAccountProfileCopyWithImpl(this._value, this._then);
|
|
|
|
// ignore: unused_field
|
|
final $Val _value;
|
|
// ignore: unused_field
|
|
final $Res Function($Val) _then;
|
|
|
|
/// Create a copy of SnAccountProfile
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? id = null,
|
|
Object? accountId = null,
|
|
Object? birthday = freezed,
|
|
Object? createdAt = null,
|
|
Object? deletedAt = freezed,
|
|
Object? experience = null,
|
|
Object? firstName = null,
|
|
Object? lastName = null,
|
|
Object? lastSeenAt = freezed,
|
|
Object? updatedAt = null,
|
|
}) {
|
|
return _then(_value.copyWith(
|
|
id: null == id
|
|
? _value.id
|
|
: id // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
accountId: null == accountId
|
|
? _value.accountId
|
|
: accountId // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
birthday: freezed == birthday
|
|
? _value.birthday
|
|
: birthday // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
createdAt: null == createdAt
|
|
? _value.createdAt
|
|
: createdAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
deletedAt: freezed == deletedAt
|
|
? _value.deletedAt
|
|
: deletedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
experience: null == experience
|
|
? _value.experience
|
|
: experience // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
firstName: null == firstName
|
|
? _value.firstName
|
|
: firstName // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
lastName: null == lastName
|
|
? _value.lastName
|
|
: lastName // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
lastSeenAt: freezed == lastSeenAt
|
|
? _value.lastSeenAt
|
|
: lastSeenAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
updatedAt: null == updatedAt
|
|
? _value.updatedAt
|
|
: updatedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
) as $Val);
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
abstract class _$$SnAccountProfileImplCopyWith<$Res>
|
|
implements $SnAccountProfileCopyWith<$Res> {
|
|
factory _$$SnAccountProfileImplCopyWith(_$SnAccountProfileImpl value,
|
|
$Res Function(_$SnAccountProfileImpl) then) =
|
|
__$$SnAccountProfileImplCopyWithImpl<$Res>;
|
|
@override
|
|
@useResult
|
|
$Res call(
|
|
{int id,
|
|
int accountId,
|
|
DateTime? birthday,
|
|
DateTime createdAt,
|
|
DateTime? deletedAt,
|
|
int experience,
|
|
String firstName,
|
|
String lastName,
|
|
DateTime? lastSeenAt,
|
|
DateTime updatedAt});
|
|
}
|
|
|
|
/// @nodoc
|
|
class __$$SnAccountProfileImplCopyWithImpl<$Res>
|
|
extends _$SnAccountProfileCopyWithImpl<$Res, _$SnAccountProfileImpl>
|
|
implements _$$SnAccountProfileImplCopyWith<$Res> {
|
|
__$$SnAccountProfileImplCopyWithImpl(_$SnAccountProfileImpl _value,
|
|
$Res Function(_$SnAccountProfileImpl) _then)
|
|
: super(_value, _then);
|
|
|
|
/// Create a copy of SnAccountProfile
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@pragma('vm:prefer-inline')
|
|
@override
|
|
$Res call({
|
|
Object? id = null,
|
|
Object? accountId = null,
|
|
Object? birthday = freezed,
|
|
Object? createdAt = null,
|
|
Object? deletedAt = freezed,
|
|
Object? experience = null,
|
|
Object? firstName = null,
|
|
Object? lastName = null,
|
|
Object? lastSeenAt = freezed,
|
|
Object? updatedAt = null,
|
|
}) {
|
|
return _then(_$SnAccountProfileImpl(
|
|
id: null == id
|
|
? _value.id
|
|
: id // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
accountId: null == accountId
|
|
? _value.accountId
|
|
: accountId // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
birthday: freezed == birthday
|
|
? _value.birthday
|
|
: birthday // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
createdAt: null == createdAt
|
|
? _value.createdAt
|
|
: createdAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
deletedAt: freezed == deletedAt
|
|
? _value.deletedAt
|
|
: deletedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
experience: null == experience
|
|
? _value.experience
|
|
: experience // ignore: cast_nullable_to_non_nullable
|
|
as int,
|
|
firstName: null == firstName
|
|
? _value.firstName
|
|
: firstName // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
lastName: null == lastName
|
|
? _value.lastName
|
|
: lastName // ignore: cast_nullable_to_non_nullable
|
|
as String,
|
|
lastSeenAt: freezed == lastSeenAt
|
|
? _value.lastSeenAt
|
|
: lastSeenAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime?,
|
|
updatedAt: null == updatedAt
|
|
? _value.updatedAt
|
|
: updatedAt // ignore: cast_nullable_to_non_nullable
|
|
as DateTime,
|
|
));
|
|
}
|
|
}
|
|
|
|
/// @nodoc
|
|
@JsonSerializable()
|
|
class _$SnAccountProfileImpl implements _SnAccountProfile {
|
|
const _$SnAccountProfileImpl(
|
|
{required this.id,
|
|
required this.accountId,
|
|
required this.birthday,
|
|
required this.createdAt,
|
|
required this.deletedAt,
|
|
required this.experience,
|
|
required this.firstName,
|
|
required this.lastName,
|
|
required this.lastSeenAt,
|
|
required this.updatedAt});
|
|
|
|
factory _$SnAccountProfileImpl.fromJson(Map<String, dynamic> json) =>
|
|
_$$SnAccountProfileImplFromJson(json);
|
|
|
|
@override
|
|
final int id;
|
|
@override
|
|
final int accountId;
|
|
@override
|
|
final DateTime? birthday;
|
|
@override
|
|
final DateTime createdAt;
|
|
@override
|
|
final DateTime? deletedAt;
|
|
@override
|
|
final int experience;
|
|
@override
|
|
final String firstName;
|
|
@override
|
|
final String lastName;
|
|
@override
|
|
final DateTime? lastSeenAt;
|
|
@override
|
|
final DateTime updatedAt;
|
|
|
|
@override
|
|
String toString() {
|
|
return 'SnAccountProfile(id: $id, accountId: $accountId, birthday: $birthday, createdAt: $createdAt, deletedAt: $deletedAt, experience: $experience, firstName: $firstName, lastName: $lastName, lastSeenAt: $lastSeenAt, updatedAt: $updatedAt)';
|
|
}
|
|
|
|
@override
|
|
bool operator ==(Object other) {
|
|
return identical(this, other) ||
|
|
(other.runtimeType == runtimeType &&
|
|
other is _$SnAccountProfileImpl &&
|
|
(identical(other.id, id) || other.id == id) &&
|
|
(identical(other.accountId, accountId) ||
|
|
other.accountId == accountId) &&
|
|
(identical(other.birthday, birthday) ||
|
|
other.birthday == birthday) &&
|
|
(identical(other.createdAt, createdAt) ||
|
|
other.createdAt == createdAt) &&
|
|
(identical(other.deletedAt, deletedAt) ||
|
|
other.deletedAt == deletedAt) &&
|
|
(identical(other.experience, experience) ||
|
|
other.experience == experience) &&
|
|
(identical(other.firstName, firstName) ||
|
|
other.firstName == firstName) &&
|
|
(identical(other.lastName, lastName) ||
|
|
other.lastName == lastName) &&
|
|
(identical(other.lastSeenAt, lastSeenAt) ||
|
|
other.lastSeenAt == lastSeenAt) &&
|
|
(identical(other.updatedAt, updatedAt) ||
|
|
other.updatedAt == updatedAt));
|
|
}
|
|
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
int get hashCode => Object.hash(
|
|
runtimeType,
|
|
id,
|
|
accountId,
|
|
birthday,
|
|
createdAt,
|
|
deletedAt,
|
|
experience,
|
|
firstName,
|
|
lastName,
|
|
lastSeenAt,
|
|
updatedAt);
|
|
|
|
/// Create a copy of SnAccountProfile
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
@override
|
|
@pragma('vm:prefer-inline')
|
|
_$$SnAccountProfileImplCopyWith<_$SnAccountProfileImpl> get copyWith =>
|
|
__$$SnAccountProfileImplCopyWithImpl<_$SnAccountProfileImpl>(
|
|
this, _$identity);
|
|
|
|
@override
|
|
Map<String, dynamic> toJson() {
|
|
return _$$SnAccountProfileImplToJson(
|
|
this,
|
|
);
|
|
}
|
|
}
|
|
|
|
abstract class _SnAccountProfile implements SnAccountProfile {
|
|
const factory _SnAccountProfile(
|
|
{required final int id,
|
|
required final int accountId,
|
|
required final DateTime? birthday,
|
|
required final DateTime createdAt,
|
|
required final DateTime? deletedAt,
|
|
required final int experience,
|
|
required final String firstName,
|
|
required final String lastName,
|
|
required final DateTime? lastSeenAt,
|
|
required final DateTime updatedAt}) = _$SnAccountProfileImpl;
|
|
|
|
factory _SnAccountProfile.fromJson(Map<String, dynamic> json) =
|
|
_$SnAccountProfileImpl.fromJson;
|
|
|
|
@override
|
|
int get id;
|
|
@override
|
|
int get accountId;
|
|
@override
|
|
DateTime? get birthday;
|
|
@override
|
|
DateTime get createdAt;
|
|
@override
|
|
DateTime? get deletedAt;
|
|
@override
|
|
int get experience;
|
|
@override
|
|
String get firstName;
|
|
@override
|
|
String get lastName;
|
|
@override
|
|
DateTime? get lastSeenAt;
|
|
@override
|
|
DateTime get updatedAt;
|
|
|
|
/// Create a copy of SnAccountProfile
|
|
/// with the given fields replaced by the non-null parameter values.
|
|
@override
|
|
@JsonKey(includeFromJson: false, includeToJson: false)
|
|
_$$SnAccountProfileImplCopyWith<_$SnAccountProfileImpl> get copyWith =>
|
|
throw _privateConstructorUsedError;
|
|
}
|