Remove nullable
This commit is contained in:
parent
4fad6adf9a
commit
714356ad51
|
|
@ -30,7 +30,6 @@ abstract class AccountEntity
|
||||||
@BuiltValueField(wireName: 'default_url')
|
@BuiltValueField(wireName: 'default_url')
|
||||||
String get defaultUrl;
|
String get defaultUrl;
|
||||||
|
|
||||||
@nullable
|
|
||||||
@BuiltValueField(wireName: 'report_errors')
|
@BuiltValueField(wireName: 'report_errors')
|
||||||
bool get reportErrors;
|
bool get reportErrors;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -198,8 +198,6 @@ abstract class ClientEntity extends Object
|
||||||
@BuiltValueField(wireName: 'paid_to_date')
|
@BuiltValueField(wireName: 'paid_to_date')
|
||||||
double get paidToDate;
|
double get paidToDate;
|
||||||
|
|
||||||
// TODO remove this nullable
|
|
||||||
@nullable
|
|
||||||
@BuiltValueField(wireName: 'client_hash')
|
@BuiltValueField(wireName: 'client_hash')
|
||||||
String get clientHash;
|
String get clientHash;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -142,7 +142,6 @@ abstract class UserEntity extends Object
|
||||||
@BuiltValueField(wireName: 'company_user')
|
@BuiltValueField(wireName: 'company_user')
|
||||||
UserCompanyEntity get userCompany;
|
UserCompanyEntity get userCompany;
|
||||||
|
|
||||||
@nullable
|
|
||||||
@BuiltValueField(wireName: 'oauth_provider_id')
|
@BuiltValueField(wireName: 'oauth_provider_id')
|
||||||
String get oauthProvider;
|
String get oauthProvider;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -180,7 +180,6 @@ abstract class VendorEntity extends Object
|
||||||
|
|
||||||
BuiltList<VendorContactEntity> get contacts;
|
BuiltList<VendorContactEntity> get contacts;
|
||||||
|
|
||||||
@nullable
|
|
||||||
BuiltList<DocumentEntity> get documents;
|
BuiltList<DocumentEntity> get documents;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue