This commit is contained in:
Hillel Coren 2021-01-25 17:16:22 +02:00
parent 0480b5e307
commit 4997964f4f
5 changed files with 99 additions and 43 deletions

View File

@ -44,6 +44,9 @@ class _$AccountEntitySerializer implements StructuredSerializer<AccountEntity> {
'is_docker', 'is_docker',
serializers.serialize(object.isDocker, serializers.serialize(object.isDocker,
specifiedType: const FullType(bool)), specifiedType: const FullType(bool)),
'is_scheduler_running',
serializers.serialize(object.isSchedulerRunning,
specifiedType: const FullType(bool)),
]; ];
return result; return result;
@ -97,6 +100,10 @@ class _$AccountEntitySerializer implements StructuredSerializer<AccountEntity> {
result.isDocker = serializers.deserialize(value, result.isDocker = serializers.deserialize(value,
specifiedType: const FullType(bool)) as bool; specifiedType: const FullType(bool)) as bool;
break; break;
case 'is_scheduler_running':
result.isSchedulerRunning = serializers.deserialize(value,
specifiedType: const FullType(bool)) as bool;
break;
} }
} }
@ -123,6 +130,8 @@ class _$AccountEntity extends AccountEntity {
final bool debugEnabled; final bool debugEnabled;
@override @override
final bool isDocker; final bool isDocker;
@override
final bool isSchedulerRunning;
factory _$AccountEntity([void Function(AccountEntityBuilder) updates]) => factory _$AccountEntity([void Function(AccountEntityBuilder) updates]) =>
(new AccountEntityBuilder()..update(updates)).build(); (new AccountEntityBuilder()..update(updates)).build();
@ -136,7 +145,8 @@ class _$AccountEntity extends AccountEntity {
this.latestVersion, this.latestVersion,
this.currentVersion, this.currentVersion,
this.debugEnabled, this.debugEnabled,
this.isDocker}) this.isDocker,
this.isSchedulerRunning})
: super._() { : super._() {
if (id == null) { if (id == null) {
throw new BuiltValueNullFieldError('AccountEntity', 'id'); throw new BuiltValueNullFieldError('AccountEntity', 'id');
@ -165,6 +175,9 @@ class _$AccountEntity extends AccountEntity {
if (isDocker == null) { if (isDocker == null) {
throw new BuiltValueNullFieldError('AccountEntity', 'isDocker'); throw new BuiltValueNullFieldError('AccountEntity', 'isDocker');
} }
if (isSchedulerRunning == null) {
throw new BuiltValueNullFieldError('AccountEntity', 'isSchedulerRunning');
}
} }
@override @override
@ -186,7 +199,8 @@ class _$AccountEntity extends AccountEntity {
latestVersion == other.latestVersion && latestVersion == other.latestVersion &&
currentVersion == other.currentVersion && currentVersion == other.currentVersion &&
debugEnabled == other.debugEnabled && debugEnabled == other.debugEnabled &&
isDocker == other.isDocker; isDocker == other.isDocker &&
isSchedulerRunning == other.isSchedulerRunning;
} }
int __hashCode; int __hashCode;
@ -198,14 +212,18 @@ class _$AccountEntity extends AccountEntity {
$jc( $jc(
$jc( $jc(
$jc( $jc(
$jc($jc($jc(0, id.hashCode), defaultUrl.hashCode), $jc(
$jc(
$jc($jc(0, id.hashCode),
defaultUrl.hashCode),
reportErrors.hashCode), reportErrors.hashCode),
plan.hashCode), plan.hashCode),
planExpires.hashCode), planExpires.hashCode),
latestVersion.hashCode), latestVersion.hashCode),
currentVersion.hashCode), currentVersion.hashCode),
debugEnabled.hashCode), debugEnabled.hashCode),
isDocker.hashCode)); isDocker.hashCode),
isSchedulerRunning.hashCode));
} }
@override @override
@ -219,7 +237,8 @@ class _$AccountEntity extends AccountEntity {
..add('latestVersion', latestVersion) ..add('latestVersion', latestVersion)
..add('currentVersion', currentVersion) ..add('currentVersion', currentVersion)
..add('debugEnabled', debugEnabled) ..add('debugEnabled', debugEnabled)
..add('isDocker', isDocker)) ..add('isDocker', isDocker)
..add('isSchedulerRunning', isSchedulerRunning))
.toString(); .toString();
} }
} }
@ -266,6 +285,11 @@ class AccountEntityBuilder
bool get isDocker => _$this._isDocker; bool get isDocker => _$this._isDocker;
set isDocker(bool isDocker) => _$this._isDocker = isDocker; set isDocker(bool isDocker) => _$this._isDocker = isDocker;
bool _isSchedulerRunning;
bool get isSchedulerRunning => _$this._isSchedulerRunning;
set isSchedulerRunning(bool isSchedulerRunning) =>
_$this._isSchedulerRunning = isSchedulerRunning;
AccountEntityBuilder() { AccountEntityBuilder() {
AccountEntity._initializeBuilder(this); AccountEntity._initializeBuilder(this);
} }
@ -281,6 +305,7 @@ class AccountEntityBuilder
_currentVersion = _$v.currentVersion; _currentVersion = _$v.currentVersion;
_debugEnabled = _$v.debugEnabled; _debugEnabled = _$v.debugEnabled;
_isDocker = _$v.isDocker; _isDocker = _$v.isDocker;
_isSchedulerRunning = _$v.isSchedulerRunning;
_$v = null; _$v = null;
} }
return this; return this;
@ -311,7 +336,8 @@ class AccountEntityBuilder
latestVersion: latestVersion, latestVersion: latestVersion,
currentVersion: currentVersion, currentVersion: currentVersion,
debugEnabled: debugEnabled, debugEnabled: debugEnabled,
isDocker: isDocker); isDocker: isDocker,
isSchedulerRunning: isSchedulerRunning);
replace(_$result); replace(_$result);
return _$result; return _$result;
} }

View File

@ -132,6 +132,9 @@ class _$InvoiceEntitySerializer implements StructuredSerializer<InvoiceEntity> {
'balance', 'balance',
serializers.serialize(object.balance, serializers.serialize(object.balance,
specifiedType: const FullType(double)), specifiedType: const FullType(double)),
'paid_to_date',
serializers.serialize(object.paidToDate,
specifiedType: const FullType(double)),
'client_id', 'client_id',
serializers.serialize(object.clientId, serializers.serialize(object.clientId,
specifiedType: const FullType(String)), specifiedType: const FullType(String)),
@ -420,6 +423,10 @@ class _$InvoiceEntitySerializer implements StructuredSerializer<InvoiceEntity> {
result.balance = serializers.deserialize(value, result.balance = serializers.deserialize(value,
specifiedType: const FullType(double)) as double; specifiedType: const FullType(double)) as double;
break; break;
case 'paid_to_date':
result.paidToDate = serializers.deserialize(value,
specifiedType: const FullType(double)) as double;
break;
case 'client_id': case 'client_id':
result.clientId = serializers.deserialize(value, result.clientId = serializers.deserialize(value,
specifiedType: const FullType(String)) as String; specifiedType: const FullType(String)) as String;
@ -1364,6 +1371,8 @@ class _$InvoiceEntity extends InvoiceEntity {
@override @override
final double balance; final double balance;
@override @override
final double paidToDate;
@override
final String clientId; final String clientId;
@override @override
final String statusId; final String statusId;
@ -1504,6 +1513,7 @@ class _$InvoiceEntity extends InvoiceEntity {
_$InvoiceEntity._( _$InvoiceEntity._(
{this.amount, {this.amount,
this.balance, this.balance,
this.paidToDate,
this.clientId, this.clientId,
this.statusId, this.statusId,
this.number, this.number,
@ -1578,6 +1588,9 @@ class _$InvoiceEntity extends InvoiceEntity {
if (balance == null) { if (balance == null) {
throw new BuiltValueNullFieldError('InvoiceEntity', 'balance'); throw new BuiltValueNullFieldError('InvoiceEntity', 'balance');
} }
if (paidToDate == null) {
throw new BuiltValueNullFieldError('InvoiceEntity', 'paidToDate');
}
if (clientId == null) { if (clientId == null) {
throw new BuiltValueNullFieldError('InvoiceEntity', 'clientId'); throw new BuiltValueNullFieldError('InvoiceEntity', 'clientId');
} }
@ -1734,6 +1747,7 @@ class _$InvoiceEntity extends InvoiceEntity {
return other is InvoiceEntity && return other is InvoiceEntity &&
amount == other.amount && amount == other.amount &&
balance == other.balance && balance == other.balance &&
paidToDate == other.paidToDate &&
clientId == other.clientId && clientId == other.clientId &&
statusId == other.statusId && statusId == other.statusId &&
number == other.number && number == other.number &&
@ -1824,7 +1838,7 @@ class _$InvoiceEntity extends InvoiceEntity {
$jc( $jc(
$jc( $jc(
$jc( $jc(
$jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc(0, amount.hashCode), balance.hashCode), clientId.hashCode), statusId.hashCode), number.hashCode), discount.hashCode), poNumber.hashCode), date.hashCode), dueDate.hashCode), publicNotes.hashCode), privateNotes.hashCode), terms.hashCode), footer.hashCode), designId.hashCode), usesInclusiveTaxes.hashCode), taxName1.hashCode), taxRate1.hashCode), taxName2.hashCode), taxRate2.hashCode), taxName3.hashCode), taxRate3.hashCode), isAmountDiscount.hashCode), partial.hashCode), taxAmount.hashCode), partialDueDate.hashCode), hasTasks.hashCode), autoBill.hashCode), autoBillEnabled.hashCode), customValue1.hashCode), customValue2.hashCode), customValue3.hashCode), customValue4.hashCode), customSurcharge1.hashCode), customSurcharge2.hashCode), customSurcharge3.hashCode), customSurcharge4.hashCode), customTaxes1.hashCode), customTaxes2.hashCode), customTaxes3.hashCode), customTaxes4.hashCode), hasExpenses.hashCode), exchangeRate.hashCode), reminder1Sent.hashCode), reminder2Sent.hashCode), reminder3Sent.hashCode), reminderLastSent.hashCode), frequencyId.hashCode), lastSentDate.hashCode), nextSendDate.hashCode), remainingCycles.hashCode), $jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc($jc(0, amount.hashCode), balance.hashCode), paidToDate.hashCode), clientId.hashCode), statusId.hashCode), number.hashCode), discount.hashCode), poNumber.hashCode), date.hashCode), dueDate.hashCode), publicNotes.hashCode), privateNotes.hashCode), terms.hashCode), footer.hashCode), designId.hashCode), usesInclusiveTaxes.hashCode), taxName1.hashCode), taxRate1.hashCode), taxName2.hashCode), taxRate2.hashCode), taxName3.hashCode), taxRate3.hashCode), isAmountDiscount.hashCode), partial.hashCode), taxAmount.hashCode), partialDueDate.hashCode), hasTasks.hashCode), autoBill.hashCode), autoBillEnabled.hashCode), customValue1.hashCode), customValue2.hashCode), customValue3.hashCode), customValue4.hashCode), customSurcharge1.hashCode), customSurcharge2.hashCode), customSurcharge3.hashCode), customSurcharge4.hashCode), customTaxes1.hashCode), customTaxes2.hashCode), customTaxes3.hashCode), customTaxes4.hashCode), hasExpenses.hashCode), exchangeRate.hashCode), reminder1Sent.hashCode), reminder2Sent.hashCode), reminder3Sent.hashCode), reminderLastSent.hashCode), frequencyId.hashCode), lastSentDate.hashCode), nextSendDate.hashCode), remainingCycles.hashCode),
dueDateDays.hashCode), dueDateDays.hashCode),
invoiceId.hashCode), invoiceId.hashCode),
recurringId.hashCode), recurringId.hashCode),
@ -1851,6 +1865,7 @@ class _$InvoiceEntity extends InvoiceEntity {
return (newBuiltValueToStringHelper('InvoiceEntity') return (newBuiltValueToStringHelper('InvoiceEntity')
..add('amount', amount) ..add('amount', amount)
..add('balance', balance) ..add('balance', balance)
..add('paidToDate', paidToDate)
..add('clientId', clientId) ..add('clientId', clientId)
..add('statusId', statusId) ..add('statusId', statusId)
..add('number', number) ..add('number', number)
@ -1934,6 +1949,10 @@ class InvoiceEntityBuilder
double get balance => _$this._balance; double get balance => _$this._balance;
set balance(double balance) => _$this._balance = balance; set balance(double balance) => _$this._balance = balance;
double _paidToDate;
double get paidToDate => _$this._paidToDate;
set paidToDate(double paidToDate) => _$this._paidToDate = paidToDate;
String _clientId; String _clientId;
String get clientId => _$this._clientId; String get clientId => _$this._clientId;
set clientId(String clientId) => _$this._clientId = clientId; set clientId(String clientId) => _$this._clientId = clientId;
@ -2235,6 +2254,7 @@ class InvoiceEntityBuilder
if (_$v != null) { if (_$v != null) {
_amount = _$v.amount; _amount = _$v.amount;
_balance = _$v.balance; _balance = _$v.balance;
_paidToDate = _$v.paidToDate;
_clientId = _$v.clientId; _clientId = _$v.clientId;
_statusId = _$v.statusId; _statusId = _$v.statusId;
_number = _$v.number; _number = _$v.number;
@ -2328,6 +2348,7 @@ class InvoiceEntityBuilder
new _$InvoiceEntity._( new _$InvoiceEntity._(
amount: amount, amount: amount,
balance: balance, balance: balance,
paidToDate: paidToDate,
clientId: clientId, clientId: clientId,
statusId: statusId, statusId: statusId,
number: number, number: number,

View File

@ -1,2 +1,3 @@
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "ephemeral/Flutter-Generated.xcconfig" #include "ephemeral/Flutter-Generated.xcconfig"

View File

@ -1,2 +1,3 @@
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "ephemeral/Flutter-Generated.xcconfig" #include "ephemeral/Flutter-Generated.xcconfig"

View File

@ -35,14 +35,14 @@ packages:
name: async name: async
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.5.0-nullsafety.3" version: "2.5.0-nullsafety.1"
boolean_selector: boolean_selector:
dependency: transitive dependency: transitive
description: description:
name: boolean_selector name: boolean_selector
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.1.0-nullsafety.3" version: "2.1.0-nullsafety.1"
build: build:
dependency: transitive dependency: transitive
description: description:
@ -119,14 +119,14 @@ packages:
name: characters name: characters
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.1.0-nullsafety.5" version: "1.1.0-nullsafety.3"
charcode: charcode:
dependency: transitive dependency: transitive
description: description:
name: charcode name: charcode
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.2.0-nullsafety.3" version: "1.2.0-nullsafety.1"
charts_common: charts_common:
dependency: transitive dependency: transitive
description: description:
@ -161,7 +161,7 @@ packages:
name: clock name: clock
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.1.0-nullsafety.3" version: "1.1.0-nullsafety.1"
code_builder: code_builder:
dependency: transitive dependency: transitive
description: description:
@ -175,7 +175,7 @@ packages:
name: collection name: collection
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.15.0-nullsafety.5" version: "1.15.0-nullsafety.3"
contacts_service: contacts_service:
dependency: "direct main" dependency: "direct main"
description: description:
@ -196,7 +196,7 @@ packages:
name: coverage name: coverage
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.15.1" version: "0.14.2"
crypto: crypto:
dependency: transitive dependency: transitive
description: description:
@ -266,7 +266,7 @@ packages:
name: fake_async name: fake_async
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.2.0-nullsafety.3" version: "1.2.0-nullsafety.1"
faker: faker:
dependency: "direct dev" dependency: "direct dev"
description: description:
@ -287,7 +287,7 @@ packages:
name: file name: file
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "6.0.0-nullsafety.4" version: "6.0.0-nullsafety.2"
file_picker: file_picker:
dependency: "direct main" dependency: "direct main"
description: description:
@ -585,7 +585,7 @@ packages:
name: js name: js
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.6.3-nullsafety.3" version: "0.6.3-nullsafety.2"
json_annotation: json_annotation:
dependency: transitive dependency: transitive
description: description:
@ -620,7 +620,7 @@ packages:
name: matcher name: matcher
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.12.10-nullsafety.3" version: "0.12.10-nullsafety.1"
material_design_icons_flutter: material_design_icons_flutter:
dependency: "direct main" dependency: "direct main"
description: description:
@ -641,7 +641,7 @@ packages:
name: meta name: meta
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.3.0-nullsafety.6" version: "1.3.0-nullsafety.3"
mime: mime:
dependency: transitive dependency: transitive
description: description:
@ -718,7 +718,7 @@ packages:
name: path name: path
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.8.0-nullsafety.3" version: "1.8.0-nullsafety.1"
path_provider: path_provider:
dependency: "direct main" dependency: "direct main"
description: description:
@ -760,7 +760,7 @@ packages:
name: pedantic name: pedantic
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.10.0-nullsafety.3" version: "1.10.0-nullsafety.2"
permission_handler: permission_handler:
dependency: "direct main" dependency: "direct main"
description: description:
@ -788,7 +788,7 @@ packages:
name: platform name: platform
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "3.0.0-nullsafety.4" version: "3.0.0-nullsafety.2"
plugin_platform_interface: plugin_platform_interface:
dependency: transitive dependency: transitive
description: description:
@ -802,14 +802,14 @@ packages:
name: pool name: pool
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.5.0-nullsafety.3" version: "1.5.0-nullsafety.2"
process: process:
dependency: transitive dependency: transitive
description: description:
name: process name: process
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "4.0.0-nullsafety.4" version: "4.0.0-nullsafety.2"
pub_semver: pub_semver:
dependency: transitive dependency: transitive
description: description:
@ -968,21 +968,21 @@ packages:
name: source_map_stack_trace name: source_map_stack_trace
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.1.0-nullsafety.4" version: "2.1.0-nullsafety.3"
source_maps: source_maps:
dependency: transitive dependency: transitive
description: description:
name: source_maps name: source_maps
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.10.10-nullsafety.3" version: "0.10.10-nullsafety.2"
source_span: source_span:
dependency: transitive dependency: transitive
description: description:
name: source_span name: source_span
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.8.0-nullsafety.4" version: "1.8.0-nullsafety.2"
sqflite: sqflite:
dependency: transitive dependency: transitive
description: description:
@ -1003,14 +1003,14 @@ packages:
name: stack_trace name: stack_trace
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.10.0-nullsafety.6" version: "1.10.0-nullsafety.1"
stream_channel: stream_channel:
dependency: transitive dependency: transitive
description: description:
name: stream_channel name: stream_channel
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.1.0-nullsafety.3" version: "2.1.0-nullsafety.1"
stream_transform: stream_transform:
dependency: transitive dependency: transitive
description: description:
@ -1024,7 +1024,7 @@ packages:
name: string_scanner name: string_scanner
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.1.0-nullsafety.3" version: "1.1.0-nullsafety.1"
sync_http: sync_http:
dependency: transitive dependency: transitive
description: description:
@ -1045,28 +1045,28 @@ packages:
name: term_glyph name: term_glyph
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.2.0-nullsafety.3" version: "1.2.0-nullsafety.1"
test: test:
dependency: "direct dev" dependency: "direct dev"
description: description:
name: test name: test
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.16.0-nullsafety.16" version: "1.16.0-nullsafety.5"
test_api: test_api:
dependency: transitive dependency: transitive
description: description:
name: test_api name: test_api
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.2.19-nullsafety.6" version: "0.2.19-nullsafety.2"
test_core: test_core:
dependency: transitive dependency: transitive
description: description:
name: test_core name: test_core
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "0.3.12-nullsafety.15" version: "0.3.12-nullsafety.5"
timeago: timeago:
dependency: "direct main" dependency: "direct main"
description: description:
@ -1087,7 +1087,7 @@ packages:
name: typed_data name: typed_data
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "1.3.0-nullsafety.5" version: "1.3.0-nullsafety.3"
url_launcher: url_launcher:
dependency: "direct main" dependency: "direct main"
description: description:
@ -1150,7 +1150,7 @@ packages:
name: vector_math name: vector_math
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "2.1.0-nullsafety.5" version: "2.1.0-nullsafety.3"
version: version:
dependency: "direct main" dependency: "direct main"
description: description:
@ -1165,6 +1165,13 @@ packages:
url: "https://pub.dartlang.org" url: "https://pub.dartlang.org"
source: hosted source: hosted
version: "5.5.0" version: "5.5.0"
vm_service_client:
dependency: transitive
description:
name: vm_service_client
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.6+2"
watcher: watcher:
dependency: transitive dependency: transitive
description: description:
@ -1229,5 +1236,5 @@ packages:
source: hosted source: hosted
version: "2.2.1" version: "2.2.1"
sdks: sdks:
dart: ">=2.12.0-0.0 <3.0.0" dart: ">=2.10.2 <2.11.0"
flutter: ">=1.22.2 <2.0.0" flutter: ">=1.22.2 <2.0.0"