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