Remove nullable

This commit is contained in:
Hillel Coren 2020-12-17 08:27:06 +02:00
parent 4fad6adf9a
commit 714356ad51
4 changed files with 0 additions and 5 deletions

View File

@ -30,7 +30,6 @@ abstract class AccountEntity
@BuiltValueField(wireName: 'default_url')
String get defaultUrl;
@nullable
@BuiltValueField(wireName: 'report_errors')
bool get reportErrors;

View File

@ -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;

View File

@ -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;

View File

@ -180,7 +180,6 @@ abstract class VendorEntity extends Object
BuiltList<VendorContactEntity> get contacts;
@nullable
BuiltList<DocumentEntity> get documents;
@override