In my case, the hive generator runs indefinitely, it's been running for more than 15 minutes but no output.
My Classes
import 'package:hive/hive.dart';
part 'badges.g.dart';
@HiveType(typeId: 1)
class Badges {
@HiveField(0)
double experiencePerLevel;
@HiveField(1)
double order;
@HiveField(2)
String enabledTintColor;
@HiveField(3)
String name;
@HiveField(4)
String disabledTintColor;
@HiveField(5)
bool earnedMessage;
@HiveField(6)
bool supportLevelUp;
@HiveField(7)
String achievementId;
@HiveField(8)
String organizationId;
@HiveField(9)
String earnedDescription;
@HiveField(10)
String description;
@HiveField(11)
String disabledImage;
@HiveField(12)
String enabledImage;
@HiveField(13)
double daysRequired;
@HiveField(14)
String type;
Badges(
this.experiencePerLevel,
this.order,
this.enabledTintColor,
this.name,
this.disabledTintColor,
this.earnedMessage,
this.supportLevelUp,
this.achievementId,
this.organizationId,
this.earnedDescription,
this.description,
this.disabledImage,
this.enabledImage,
this.daysRequired,
this.type);
Badges.fromJsonMap(Map<String, dynamic> map)
: experiencePerLevel = map["experience-per-level"],
order = map["order"],
enabledTintColor = map["enabled-tint-color"],
name = map["name"],
disabledTintColor = map["disabled-tint-color"],
earnedMessage = map["earnedMessage"],
supportLevelUp = map["support-level-up"],
achievementId = map["achievement-id"],
organizationId = map["organization-id"],
earnedDescription = map["earned-description"],
description = map["description"],
disabledImage = map["disabled-image"],
enabledImage = map["enabled-image"],
daysRequired = map["days-required"],
type = map["type"];
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['experience-per-level'] = experiencePerLevel;
data['order'] = order;
data['enabled-tint-color'] = enabledTintColor;
data['name'] = name;
data['disabled-tint-color'] = disabledTintColor;
data['earnedMessage'] = earnedMessage;
data['support-level-up'] = supportLevelUp;
data['achievement-id'] = achievementId;
data['organization-id'] = organizationId;
data['earned-description'] = earnedDescription;
data['description'] = description;
data['disabled-image'] = disabledImage;
data['enabled-image'] = enabledImage;
data['days-required'] = daysRequired;
data['type'] = type;
return data;
}
}
```
import 'package:hive/hive.dart';
import 'package:sprightly/new/model/sender.dart';
part 'recognition.g.dart';
@HiveType(typeId: 2)
class Recognitions {
@HiveField(0)
String text;
@HiveField(1)
String date;
@HiveField(2)
Sender sender;
Recognitions(this.text, this.date, this.sender);
Recognitions.fromJsonMap(Map
import 'package:hive/hive.dart';
part 'sender.g.dart';
@HiveType(typeId: 3)
class Sender {
@HiveField(0)
String name;
@HiveField(1)
String profilePicture;
@HiveField(2)
String designation;
@HiveField(3)
String organization;
@HiveField(4)
String location;
Sender(this.name, this.profilePicture, this.designation, this.organization,
this.location);
Sender.fromJsonMap(Map
import 'package:hive/hive.dart';
import 'package:sprightly/new/model/badges.dart';
import 'package:sprightly/new/model/recognitions.dart';
part 'server.g.dart';
@HiveType(typeId: 0)
class Server {
@HiveField(0)
String ppa;
@HiveField(1)
String storeId;
@HiveField(2)
String email;
@HiveField(3)
String lastLogin;
@HiveField(4)
String organizationName;
@HiveField(5)
String regionId;
@HiveField(6)
String divisionId;
@HiveField(7)
String tipPercent;
@HiveField(8)
String serverName;
@HiveField(9)
String image;
@HiveField(10)
String orgLogo;
@HiveField(11)
String organizationId;
@HiveField(12)
String firstName;
@HiveField(13)
String cognitoId;
@HiveField(14)
String totalTickets;
@HiveField(15)
String orgUserId;
@HiveField(16)
String employeeId;
@HiveField(17)
String totalSales;
@HiveField(18)
String storeName;
@HiveField(19)
String osatPercent;
@HiveField(20)
String lastActive;
@HiveField(21)
String guestCount;
@HiveField(22)
String totalDuration;
@HiveField(23)
String roleId;
@HiveField(24)
String lastName;
@HiveField(25)
String firstLogin;
@HiveField(26)
String jobCode;
@HiveField(27)
String osatTickets;
@HiveField(28)
String title;
@HiveField(29)
List</p>
</details>
<details><summary>The Console output</summary>
<p>
[INFO] Generating build script...
[INFO] Generating build script completed, took 463ms
[WARNING] Deleted previous snapshot due to missing asset graph.
[INFO] Creating build script snapshot......
[INFO] Creating build script snapshot... completed, took 14.3s
[INFO] Initializing inputs
[INFO] Building new asset graph...
[INFO] Building new asset graph completed, took 707ms
[INFO] Checking for unexpected pre-existing outputs....
[INFO] Checking for unexpected pre-existing outputs. completed, took 1ms
[INFO] Running build...
[INFO] Generating SDK summary...
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[SEVERE] hive_generator:hive_generator on lib/new/home.dart:
Bad state: Unexpected diagnostics:
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:133:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:154:25 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:18:17 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:64:4 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:168:32 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:47:14 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:159:38 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:132:37 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:118:48 - This requires the 'non-nullable' language feature to be enabled.
/Users/arjunmanoj/flutter/bin/cache/pkg/sky_engine/lib/ui/channel_buffers.dart:19:11 - This requires the 'non-nullable' language feature to be enabled.
[INFO] 2.7s elapsed, 1/17 actions completed.
[INFO] 3.7s elapsed, 1/17 actions completed.
[INFO] 4.8s elapsed, 1/17 actions completed.
[INFO] 5.8s elapsed, 1/17 actions completed.
[INFO] 6.8s elapsed, 1/17 actions completed.
[INFO] 7.9s elapsed, 1/17 actions completed.
[INFO] 8.9s elapsed, 1/17 actions completed.
[INFO] 10.0s elapsed, 1/17 actions completed.
[INFO] 11.0s elapsed, 1/17 actions completed.
[INFO] 12.1s elapsed, 1/17 actions completed.
[INFO] 13.1s elapsed, 1/17 actions completed.
[INFO] 14.2s elapsed, 1/17 actions completed.
[INFO] 15.2s elapsed, 1/17 actions completed.
[INFO] 16.3s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 17.8s elapsed, 1/17 actions completed.
[INFO] 18.8s elapsed, 1/17 actions completed.
[INFO] 19.9s elapsed, 1/17 actions completed.
[INFO] 21.0s elapsed, 1/17 actions completed.
[INFO] 22.0s elapsed, 1/17 actions completed.
[INFO] 23.1s elapsed, 1/17 actions completed.
[INFO] 24.2s elapsed, 1/17 actions completed.
[INFO] 25.3s elapsed, 1/17 actions completed.
[INFO] 26.4s elapsed, 1/17 actions completed.
[INFO] 27.4s elapsed, 1/17 actions completed.
[INFO] 28.4s elapsed, 1/17 actions completed.
[INFO] 29.5s elapsed, 1/17 actions completed.
[INFO] 30.6s elapsed, 1/17 actions completed.
[INFO] 31.7s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 32.8s elapsed, 1/17 actions completed.
[INFO] 33.9s elapsed, 1/17 actions completed.
[INFO] 34.9s elapsed, 1/17 actions completed.
[INFO] 36.0s elapsed, 1/17 actions completed.
[INFO] 37.1s elapsed, 1/17 actions completed.
[INFO] 38.2s elapsed, 1/17 actions completed.
[INFO] 39.3s elapsed, 1/17 actions completed.
[INFO] 40.4s elapsed, 1/17 actions completed.
[INFO] 41.5s elapsed, 1/17 actions completed.
[INFO] 42.5s elapsed, 1/17 actions completed.
[INFO] 43.6s elapsed, 1/17 actions completed.
[INFO] 44.6s elapsed, 1/17 actions completed.
[INFO] 45.6s elapsed, 1/17 actions completed.
[INFO] 46.7s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.0s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 47.9s elapsed, 1/17 actions completed.
[INFO] 49.0s elapsed, 1/17 actions completed.
[INFO] 50.1s elapsed, 1/17 actions completed.
[INFO] 51.1s elapsed, 1/17 actions completed.
[INFO] 52.2s elapsed, 1/17 actions completed.
[INFO] 53.3s elapsed, 1/17 actions completed.
[INFO] 54.3s elapsed, 1/17 actions completed.
[INFO] 55.4s elapsed, 1/17 actions completed.
[INFO] 56.4s elapsed, 1/17 actions completed.
[INFO] 57.5s elapsed, 1/17 actions completed.
[INFO] 58.6s elapsed, 1/17 actions completed.
[INFO] 59.7s elapsed, 1/17 actions completed.
[INFO] 1m 0s elapsed, 1/17 actions completed.
[INFO] 1m 1s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 1m 2s elapsed, 1/17 actions completed.
[INFO] 1m 4s elapsed, 1/17 actions completed.
[INFO] 1m 5s elapsed, 1/17 actions completed.
[INFO] 1m 6s elapsed, 1/17 actions completed.
[INFO] 1m 7s elapsed, 1/17 actions completed.
[INFO] 1m 8s elapsed, 1/17 actions completed.
[INFO] 1m 9s elapsed, 1/17 actions completed.
[INFO] 1m 10s elapsed, 1/17 actions completed.
[INFO] 1m 11s elapsed, 1/17 actions completed.
[INFO] 1m 12s elapsed, 1/17 actions completed.
[INFO] 1m 13s elapsed, 1/17 actions completed.
[INFO] 1m 14s elapsed, 1/17 actions completed.
[INFO] 1m 15s elapsed, 1/17 actions completed.
[INFO] 1m 16s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.0s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 1m 18s elapsed, 1/17 actions completed.
[INFO] 1m 19s elapsed, 1/17 actions completed.
[INFO] 1m 20s elapsed, 1/17 actions completed.
[INFO] 1m 21s elapsed, 1/17 actions completed.
[INFO] 1m 22s elapsed, 1/17 actions completed.
[INFO] 1m 23s elapsed, 1/17 actions completed.
[INFO] 1m 24s elapsed, 1/17 actions completed.
[INFO] 1m 25s elapsed, 1/17 actions completed.
[INFO] 1m 26s elapsed, 1/17 actions completed.
[INFO] 1m 27s elapsed, 1/17 actions completed.
[INFO] 1m 28s elapsed, 1/17 actions completed.
[INFO] 1m 29s elapsed, 1/17 actions completed.
[INFO] 1m 30s elapsed, 1/17 actions completed.
[INFO] 1m 31s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.0s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 1m 33s elapsed, 1/17 actions completed.
[INFO] 1m 34s elapsed, 1/17 actions completed.
[INFO] 1m 35s elapsed, 1/17 actions completed.
[INFO] 1m 36s elapsed, 1/17 actions completed.
[INFO] 1m 37s elapsed, 1/17 actions completed.
[INFO] 1m 38s elapsed, 1/17 actions completed.
[INFO] 1m 39s elapsed, 1/17 actions completed.
[INFO] 1m 40s elapsed, 1/17 actions completed.
[INFO] 1m 41s elapsed, 1/17 actions completed.
[INFO] 1m 42s elapsed, 1/17 actions completed.
[INFO] 1m 43s elapsed, 1/17 actions completed.
[INFO] 1m 44s elapsed, 1/17 actions completed.
[INFO] 1m 45s elapsed, 1/17 actions completed.
[INFO] 1m 46s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 1m 48s elapsed, 1/17 actions completed.
[INFO] 1m 49s elapsed, 1/17 actions completed.
[INFO] 1m 50s elapsed, 1/17 actions completed.
[INFO] 1m 51s elapsed, 1/17 actions completed.
[INFO] 1m 52s elapsed, 1/17 actions completed.
[INFO] 1m 53s elapsed, 1/17 actions completed.
[INFO] 1m 54s elapsed, 1/17 actions completed.
[INFO] 1m 55s elapsed, 1/17 actions completed.
[INFO] 1m 56s elapsed, 1/17 actions completed.
[INFO] 1m 57s elapsed, 1/17 actions completed.
[INFO] 1m 58s elapsed, 1/17 actions completed.
[INFO] 1m 59s elapsed, 1/17 actions completed.
[INFO] 2m 0s elapsed, 1/17 actions completed.
[INFO] 2m 1s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 2m 3s elapsed, 1/17 actions completed.
[INFO] 2m 4s elapsed, 1/17 actions completed.
[INFO] 2m 5s elapsed, 1/17 actions completed.
[INFO] 2m 6s elapsed, 1/17 actions completed.
[INFO] 2m 7s elapsed, 1/17 actions completed.
[INFO] 2m 8s elapsed, 1/17 actions completed.
[INFO] 2m 9s elapsed, 1/17 actions completed.
[INFO] 2m 10s elapsed, 1/17 actions completed.
[INFO] 2m 11s elapsed, 1/17 actions completed.
[INFO] 2m 12s elapsed, 1/17 actions completed.
[INFO] 2m 14s elapsed, 1/17 actions completed.
[INFO] 2m 15s elapsed, 1/17 actions completed.
[INFO] 2m 16s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.0s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 2m 18s elapsed, 1/17 actions completed.
[INFO] 2m 19s elapsed, 1/17 actions completed.
[INFO] 2m 20s elapsed, 1/17 actions completed.
[INFO] 2m 21s elapsed, 1/17 actions completed.
[INFO] 2m 22s elapsed, 1/17 actions completed.
[INFO] 2m 23s elapsed, 1/17 actions completed.
[INFO] 2m 24s elapsed, 1/17 actions completed.
[INFO] 2m 25s elapsed, 1/17 actions completed.
[INFO] 2m 26s elapsed, 1/17 actions completed.
[INFO] 2m 27s elapsed, 1/17 actions completed.
[INFO] 2m 28s elapsed, 1/17 actions completed.
[INFO] 2m 29s elapsed, 1/17 actions completed.
[INFO] 2m 30s elapsed, 1/17 actions completed.
[INFO] 2m 32s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.0s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 2m 33s elapsed, 1/17 actions completed.
[INFO] 2m 34s elapsed, 1/17 actions completed.
[INFO] 2m 35s elapsed, 1/17 actions completed.
[INFO] 2m 36s elapsed, 1/17 actions completed.
[INFO] 2m 37s elapsed, 1/17 actions completed.
[INFO] 2m 38s elapsed, 1/17 actions completed.
[INFO] 2m 39s elapsed, 1/17 actions completed.
[INFO] 2m 40s elapsed, 1/17 actions completed.
[INFO] 2m 41s elapsed, 1/17 actions completed.
[INFO] 2m 42s elapsed, 1/17 actions completed.
[INFO] 2m 43s elapsed, 1/17 actions completed.
[INFO] 2m 44s elapsed, 1/17 actions completed.
[INFO] 2m 45s elapsed, 1/17 actions completed.
[INFO] 2m 46s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 2m 48s elapsed, 1/17 actions completed.
[INFO] 2m 49s elapsed, 1/17 actions completed.
[INFO] 2m 50s elapsed, 1/17 actions completed.
[INFO] 2m 51s elapsed, 1/17 actions completed.
[INFO] 2m 52s elapsed, 1/17 actions completed.
[INFO] 2m 53s elapsed, 1/17 actions completed.
[INFO] 2m 54s elapsed, 1/17 actions completed.
[INFO] 2m 55s elapsed, 1/17 actions completed.
[INFO] 2m 56s elapsed, 1/17 actions completed.
[INFO] 2m 58s elapsed, 1/17 actions completed.
[INFO] 2m 59s elapsed, 1/17 actions completed.
[INFO] 3m 0s elapsed, 1/17 actions completed.
[INFO] 3m 1s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.0s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 3m 3s elapsed, 1/17 actions completed.
[INFO] 3m 4s elapsed, 1/17 actions completed.
[INFO] 3m 5s elapsed, 1/17 actions completed.
[INFO] 3m 6s elapsed, 1/17 actions completed.
[INFO] 3m 7s elapsed, 1/17 actions completed.
[INFO] 3m 8s elapsed, 1/17 actions completed.
[INFO] 3m 9s elapsed, 1/17 actions completed.
[INFO] 3m 10s elapsed, 1/17 actions completed.
[INFO] 3m 11s elapsed, 1/17 actions completed.
[INFO] 3m 12s elapsed, 1/17 actions completed.
[INFO] 3m 13s elapsed, 1/17 actions completed.
[INFO] 3m 14s elapsed, 1/17 actions completed.
[INFO] 3m 16s elapsed, 1/17 actions completed.
[INFO] 3m 17s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 3m 18s elapsed, 1/17 actions completed.
[INFO] 3m 19s elapsed, 1/17 actions completed.
[INFO] 3m 20s elapsed, 1/17 actions completed.
[INFO] 3m 21s elapsed, 1/17 actions completed.
[INFO] 3m 22s elapsed, 1/17 actions completed.
[INFO] 3m 23s elapsed, 1/17 actions completed.
[INFO] 3m 24s elapsed, 1/17 actions completed.
[INFO] 3m 25s elapsed, 1/17 actions completed.
[INFO] 3m 26s elapsed, 1/17 actions completed.
[INFO] 3m 27s elapsed, 1/17 actions completed.
[INFO] 3m 29s elapsed, 1/17 actions completed.
[INFO] 3m 30s elapsed, 1/17 actions completed.
[INFO] 3m 31s elapsed, 1/17 actions completed.
[INFO] 3m 32s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 3m 33s elapsed, 1/17 actions completed.
[INFO] 3m 34s elapsed, 1/17 actions completed.
[INFO] 3m 35s elapsed, 1/17 actions completed.
[INFO] 3m 36s elapsed, 1/17 actions completed.
[INFO] 3m 37s elapsed, 1/17 actions completed.
[INFO] 3m 38s elapsed, 1/17 actions completed.
[INFO] 3m 39s elapsed, 1/17 actions completed.
[INFO] 3m 40s elapsed, 1/17 actions completed.
[INFO] 3m 41s elapsed, 1/17 actions completed.
[INFO] 3m 42s elapsed, 1/17 actions completed.
[INFO] 3m 43s elapsed, 1/17 actions completed.
[INFO] 3m 45s elapsed, 1/17 actions completed.
[INFO] 3m 46s elapsed, 1/17 actions completed.
[INFO] 3m 47s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 3m 48s elapsed, 1/17 actions completed.
[INFO] 3m 49s elapsed, 1/17 actions completed.
[INFO] 3m 50s elapsed, 1/17 actions completed.
[INFO] 3m 51s elapsed, 1/17 actions completed.
[INFO] 3m 52s elapsed, 1/17 actions completed.
[INFO] 3m 53s elapsed, 1/17 actions completed.
[INFO] 3m 55s elapsed, 1/17 actions completed.
[INFO] 3m 56s elapsed, 1/17 actions completed.
[INFO] 3m 57s elapsed, 1/17 actions completed.
[INFO] 3m 58s elapsed, 1/17 actions completed.
[INFO] 3m 59s elapsed, 1/17 actions completed.
[INFO] 4m 0s elapsed, 1/17 actions completed.
[INFO] 4m 1s elapsed, 1/17 actions completed.
[INFO] 4m 2s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 4m 3s elapsed, 1/17 actions completed.
[INFO] 4m 4s elapsed, 1/17 actions completed.
[INFO] 4m 5s elapsed, 1/17 actions completed.
[INFO] 4m 6s elapsed, 1/17 actions completed.
[INFO] 4m 7s elapsed, 1/17 actions completed.
[INFO] 4m 9s elapsed, 1/17 actions completed.
[INFO] 4m 10s elapsed, 1/17 actions completed.
[INFO] 4m 11s elapsed, 1/17 actions completed.
[INFO] 4m 12s elapsed, 1/17 actions completed.
[INFO] 4m 13s elapsed, 1/17 actions completed.
[INFO] 4m 14s elapsed, 1/17 actions completed.
[INFO] 4m 15s elapsed, 1/17 actions completed.
[INFO] 4m 16s elapsed, 1/17 actions completed.
[INFO] 4m 17s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.0s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 4m 18s elapsed, 1/17 actions completed.
[INFO] 4m 19s elapsed, 1/17 actions completed.
[INFO] 4m 20s elapsed, 1/17 actions completed.
[INFO] 4m 21s elapsed, 1/17 actions completed.
[INFO] 4m 22s elapsed, 1/17 actions completed.
[INFO] 4m 23s elapsed, 1/17 actions completed.
[INFO] 4m 25s elapsed, 1/17 actions completed.
[INFO] 4m 26s elapsed, 1/17 actions completed.
[INFO] 4m 27s elapsed, 1/17 actions completed.
[INFO] 4m 28s elapsed, 1/17 actions completed.
[INFO] 4m 29s elapsed, 1/17 actions completed.
[INFO] 4m 30s elapsed, 1/17 actions completed.
[INFO] 4m 31s elapsed, 1/17 actions completed.
[INFO] 4m 32s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 4m 33s elapsed, 1/17 actions completed.
[INFO] 4m 34s elapsed, 1/17 actions completed.
[INFO] 4m 35s elapsed, 1/17 actions completed.
[INFO] 4m 37s elapsed, 1/17 actions completed.
[INFO] 4m 38s elapsed, 1/17 actions completed.
[INFO] 4m 39s elapsed, 1/17 actions completed.
[INFO] 4m 40s elapsed, 1/17 actions completed.
[INFO] 4m 41s elapsed, 1/17 actions completed.
[INFO] 4m 42s elapsed, 1/17 actions completed.
[INFO] 4m 43s elapsed, 1/17 actions completed.
[INFO] 4m 44s elapsed, 1/17 actions completed.
[INFO] 4m 45s elapsed, 1/17 actions completed.
[INFO] 4m 46s elapsed, 1/17 actions completed.
[INFO] 4m 47s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.0s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 4m 48s elapsed, 1/17 actions completed.
[INFO] 4m 49s elapsed, 1/17 actions completed.
[INFO] 4m 51s elapsed, 1/17 actions completed.
[INFO] 4m 52s elapsed, 1/17 actions completed.
[INFO] 4m 53s elapsed, 1/17 actions completed.
[INFO] 4m 54s elapsed, 1/17 actions completed.
[INFO] 4m 55s elapsed, 1/17 actions completed.
[INFO] 4m 56s elapsed, 1/17 actions completed.
[INFO] 4m 57s elapsed, 1/17 actions completed.
[INFO] 4m 58s elapsed, 1/17 actions completed.
[INFO] 4m 59s elapsed, 1/17 actions completed.
[INFO] 5m 0s elapsed, 1/17 actions completed.
[INFO] 5m 1s elapsed, 1/17 actions completed.
[INFO] 5m 2s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 5m 3s elapsed, 1/17 actions completed.
[INFO] 5m 5s elapsed, 1/17 actions completed.
[INFO] 5m 6s elapsed, 1/17 actions completed.
[INFO] 5m 7s elapsed, 1/17 actions completed.
[INFO] 5m 8s elapsed, 1/17 actions completed.
[INFO] 5m 9s elapsed, 1/17 actions completed.
[INFO] 5m 10s elapsed, 1/17 actions completed.
[INFO] 5m 11s elapsed, 1/17 actions completed.
[INFO] 5m 12s elapsed, 1/17 actions completed.
[INFO] 5m 13s elapsed, 1/17 actions completed.
[INFO] 5m 14s elapsed, 1/17 actions completed.
[INFO] 5m 15s elapsed, 1/17 actions completed.
[INFO] 5m 16s elapsed, 1/17 actions completed.
[INFO] 5m 17s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 5m 19s elapsed, 1/17 actions completed.
[INFO] 5m 20s elapsed, 1/17 actions completed.
[INFO] 5m 21s elapsed, 1/17 actions completed.
[INFO] 5m 22s elapsed, 1/17 actions completed.
[INFO] 5m 23s elapsed, 1/17 actions completed.
[INFO] 5m 24s elapsed, 1/17 actions completed.
[INFO] 5m 25s elapsed, 1/17 actions completed.
[INFO] 5m 26s elapsed, 1/17 actions completed.
[INFO] 5m 27s elapsed, 1/17 actions completed.
[INFO] 5m 28s elapsed, 1/17 actions completed.
[INFO] 5m 29s elapsed, 1/17 actions completed.
[INFO] 5m 30s elapsed, 1/17 actions completed.
[INFO] 5m 31s elapsed, 1/17 actions completed.
[INFO] 5m 32s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 5m 34s elapsed, 1/17 actions completed.
[INFO] 5m 35s elapsed, 1/17 actions completed.
[INFO] 5m 36s elapsed, 1/17 actions completed.
[INFO] 5m 37s elapsed, 1/17 actions completed.
[INFO] 5m 38s elapsed, 1/17 actions completed.
[INFO] 5m 39s elapsed, 1/17 actions completed.
[INFO] 5m 40s elapsed, 1/17 actions completed.
[INFO] 5m 41s elapsed, 1/17 actions completed.
[INFO] 5m 42s elapsed, 1/17 actions completed.
[INFO] 5m 43s elapsed, 1/17 actions completed.
[INFO] 5m 44s elapsed, 1/17 actions completed.
[INFO] 5m 45s elapsed, 1/17 actions completed.
[INFO] 5m 46s elapsed, 1/17 actions completed.
[INFO] 5m 48s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 5m 49s elapsed, 1/17 actions completed.
[INFO] 5m 50s elapsed, 1/17 actions completed.
[INFO] 5m 51s elapsed, 1/17 actions completed.
[INFO] 5m 52s elapsed, 1/17 actions completed.
[INFO] 5m 53s elapsed, 1/17 actions completed.
[INFO] 5m 54s elapsed, 1/17 actions completed.
[INFO] 5m 55s elapsed, 1/17 actions completed.
[INFO] 5m 56s elapsed, 1/17 actions completed.
[INFO] 5m 57s elapsed, 1/17 actions completed.
[INFO] 5m 58s elapsed, 1/17 actions completed.
[INFO] 5m 59s elapsed, 1/17 actions completed.
[INFO] 6m 1s elapsed, 1/17 actions completed.
[INFO] 6m 2s elapsed, 1/17 actions completed.
[INFO] 6m 3s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 6m 4s elapsed, 1/17 actions completed.
[INFO] 6m 5s elapsed, 1/17 actions completed.
[INFO] 6m 6s elapsed, 1/17 actions completed.
[INFO] 6m 7s elapsed, 1/17 actions completed.
[INFO] 6m 8s elapsed, 1/17 actions completed.
[INFO] 6m 9s elapsed, 1/17 actions completed.
[INFO] 6m 10s elapsed, 1/17 actions completed.
[INFO] 6m 11s elapsed, 1/17 actions completed.
[INFO] 6m 12s elapsed, 1/17 actions completed.
[INFO] 6m 13s elapsed, 1/17 actions completed.
[INFO] 6m 14s elapsed, 1/17 actions completed.
[INFO] 6m 15s elapsed, 1/17 actions completed.
[INFO] 6m 16s elapsed, 1/17 actions completed.
[INFO] 6m 17s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 6m 19s elapsed, 1/17 actions completed.
[INFO] 6m 20s elapsed, 1/17 actions completed.
[INFO] 6m 21s elapsed, 1/17 actions completed.
[INFO] 6m 22s elapsed, 1/17 actions completed.
[INFO] 6m 23s elapsed, 1/17 actions completed.
[INFO] 6m 24s elapsed, 1/17 actions completed.
[INFO] 6m 25s elapsed, 1/17 actions completed.
[INFO] 6m 26s elapsed, 1/17 actions completed.
[INFO] 6m 27s elapsed, 1/17 actions completed.
[INFO] 6m 29s elapsed, 1/17 actions completed.
[INFO] 6m 30s elapsed, 1/17 actions completed.
[INFO] 6m 31s elapsed, 1/17 actions completed.
[INFO] 6m 32s elapsed, 1/17 actions completed.
[INFO] 6m 33s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 6m 34s elapsed, 1/17 actions completed.
[INFO] 6m 35s elapsed, 1/17 actions completed.
[INFO] 6m 36s elapsed, 1/17 actions completed.
[INFO] 6m 37s elapsed, 1/17 actions completed.
[INFO] 6m 38s elapsed, 1/17 actions completed.
[INFO] 6m 39s elapsed, 1/17 actions completed.
[INFO] 6m 40s elapsed, 1/17 actions completed.
[INFO] 6m 41s elapsed, 1/17 actions completed.
[INFO] 6m 43s elapsed, 1/17 actions completed.
[INFO] 6m 44s elapsed, 1/17 actions completed.
[INFO] 6m 45s elapsed, 1/17 actions completed.
[INFO] 6m 46s elapsed, 1/17 actions completed.
[INFO] 6m 47s elapsed, 1/17 actions completed.
[INFO] 6m 48s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 6m 49s elapsed, 1/17 actions completed.
[INFO] 6m 50s elapsed, 1/17 actions completed.
[INFO] 6m 51s elapsed, 1/17 actions completed.
[INFO] 6m 52s elapsed, 1/17 actions completed.
[INFO] 6m 53s elapsed, 1/17 actions completed.
[INFO] 6m 54s elapsed, 1/17 actions completed.
[INFO] 6m 55s elapsed, 1/17 actions completed.
[INFO] 6m 56s elapsed, 1/17 actions completed.
[INFO] 6m 57s elapsed, 1/17 actions completed.
[INFO] 6m 59s elapsed, 1/17 actions completed.
[INFO] 7m 0s elapsed, 1/17 actions completed.
[INFO] 7m 1s elapsed, 1/17 actions completed.
[INFO] 7m 2s elapsed, 1/17 actions completed.
[INFO] 7m 3s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.0s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 7m 4s elapsed, 1/17 actions completed.
[INFO] 7m 5s elapsed, 1/17 actions completed.
[INFO] 7m 6s elapsed, 1/17 actions completed.
[INFO] 7m 7s elapsed, 1/17 actions completed.
[INFO] 7m 8s elapsed, 1/17 actions completed.
[INFO] 7m 10s elapsed, 1/17 actions completed.
[INFO] 7m 11s elapsed, 1/17 actions completed.
[INFO] 7m 12s elapsed, 1/17 actions completed.
[INFO] 7m 13s elapsed, 1/17 actions completed.
[INFO] 7m 14s elapsed, 1/17 actions completed.
[INFO] 7m 15s elapsed, 1/17 actions completed.
[INFO] 7m 16s elapsed, 1/17 actions completed.
[INFO] 7m 17s elapsed, 1/17 actions completed.
[INFO] 7m 18s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 7m 19s elapsed, 1/17 actions completed.
[INFO] 7m 20s elapsed, 1/17 actions completed.
[INFO] 7m 21s elapsed, 1/17 actions completed.
[INFO] 7m 22s elapsed, 1/17 actions completed.
[INFO] 7m 24s elapsed, 1/17 actions completed.
[INFO] 7m 25s elapsed, 1/17 actions completed.
[INFO] 7m 26s elapsed, 1/17 actions completed.
[INFO] 7m 27s elapsed, 1/17 actions completed.
[INFO] 7m 28s elapsed, 1/17 actions completed.
[INFO] 7m 29s elapsed, 1/17 actions completed.
[INFO] 7m 30s elapsed, 1/17 actions completed.
[INFO] 7m 31s elapsed, 1/17 actions completed.
[INFO] 7m 32s elapsed, 1/17 actions completed.
[INFO] 7m 33s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.0s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 7m 34s elapsed, 1/17 actions completed.
[INFO] 7m 35s elapsed, 1/17 actions completed.
[INFO] 7m 36s elapsed, 1/17 actions completed.
[INFO] 7m 37s elapsed, 1/17 actions completed.
[INFO] 7m 38s elapsed, 1/17 actions completed.
[INFO] 7m 40s elapsed, 1/17 actions completed.
[INFO] 7m 41s elapsed, 1/17 actions completed.
[INFO] 7m 42s elapsed, 1/17 actions completed.
[INFO] 7m 43s elapsed, 1/17 actions completed.
[INFO] 7m 44s elapsed, 1/17 actions completed.
[INFO] 7m 45s elapsed, 1/17 actions completed.
[INFO] 7m 46s elapsed, 1/17 actions completed.
[INFO] 7m 47s elapsed, 1/17 actions completed.
[INFO] 7m 48s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 7m 49s elapsed, 1/17 actions completed.
[INFO] 7m 50s elapsed, 1/17 actions completed.
[INFO] 7m 51s elapsed, 1/17 actions completed.
[INFO] 7m 52s elapsed, 1/17 actions completed.
[INFO] 7m 54s elapsed, 1/17 actions completed.
[INFO] 7m 55s elapsed, 1/17 actions completed.
[INFO] 7m 56s elapsed, 1/17 actions completed.
[INFO] 7m 57s elapsed, 1/17 actions completed.
[INFO] 7m 58s elapsed, 1/17 actions completed.
[INFO] 7m 59s elapsed, 1/17 actions completed.
[INFO] 8m 0s elapsed, 1/17 actions completed.
[INFO] 8m 1s elapsed, 1/17 actions completed.
[INFO] 8m 2s elapsed, 1/17 actions completed.
[INFO] 8m 3s elapsed, 1/17 actions completed.
[WARNING] No actions completed for 15.1s, waiting on:
- hive_generator:hive_generator on lib/new/repository/repository.dart
- hive_generator:hive_generator on lib/new/profileDetail/profile_detail.dart
- hive_generator:hive_generator on lib/new/profileDetail/achievements.dart
- hive_generator:hive_generator on lib/new/profileDetail/employement_history.dart
- hive_generator:hive_generator on lib/new/profileDetail/recognition.dart
.. and 11 more
[INFO] 8m 4s elapsed, 1/17 actions completed.
[INFO] 8m 5s elapsed, 1/17 actions completed.
[INFO] 8m 7s elapsed, 1/17 actions completed.
[INFO] 8m 8s elapsed, 1/17 actions completed.
[INFO] 8m 9s elapsed, 1/17 actions completed.
[INFO] 8m 10s elapsed, 1/17 actions completed.
[INFO] 8m 11s elapsed, 1/17 actions completed.
[INFO] 8m 12s elapsed, 1/17 actions completed.
[INFO] 8m 13s elapsed, 1/17 actions completed.
[INFO] 8m 14s elapsed, 1/17 actions completed.
[INFO] 8m 15s elapsed, 1/17 actions completed.```
```
hive: ^1.4.2
hive_flutter: ^0.3.1
hive_generator: ^0.7.1
build_runner: ^1.10.0
Version
I have faced with same issue when generating json_serializable. I don't know how but it fixed by itself. I think the issue is related to analyzer package.
Please could you try adding this lines to pubspec.yaml? Let me know if it worked.
dependency_overrides:
analyzer: 0.39.14
@TheMisir awesome thanks, btw what's the catch here the tutorial I'm following also had some kind of issue and it was solved by downgrading the analyzer by 1 (for him it was 0.38.3 -> 0.38.2), the default analyzer for me was 0.39.15 and we downgraded it to 0.39.14, is it always 1 decrement or just a coincidence.
@TheMisir awesome thanks, btw what's the catch here the tutorial I'm following also had some kind of issue and it was solved by downgrading the analyzer by 1 (for him it was 0.38.3 -> 0.38.2), the default analyzer for me was 0.39.15 and we downgraded it to 0.39.14, is it always 1 decrement or just a coincidence.
I think latest version of analyzer has a bug that causes this issue. But I don't know exact reason
[INFO] Running build...
[INFO] Generating SDK summary...
[SEVERE] hive_generator:hive_generator on lib/Auth&Http/Auth.dart:
Bad state: Unexpected diagnostics:
C:\Program Files\Flutter\bin\cache\pkg\sky_engine\lib\ui\channel_buffers.dart:119:41 - This requires the 'non-nullable' language feature to be enabled.
C:\Program Files\Flutter\bin\cache\pkg\sky_engine\lib\ui\channel_buffers.dart:152:17 - This requires the 'non-nullable' language feature to be enabled.
C:\Program Files\Flutter\bin\cache\pkg\sky_engine\lib\ui\channel_buffers.dart:88:62 - This requires the 'non-nullable' language feature to be enabled.
C:\Program Files\Flutter\bin\cache\pkg\sky_engine\lib\ui\channel_buffers.dart:153:38 - This requires the 'non-nullable' language feature to be enabled.
C:\Program Files\Flutter\bin\cache\pkg\sky_engine\lib\ui\channel_buffers.dart:186:51 - This requires the 'non-nullable' language feature to be enabled.
Same error, may i know the solution for this
same error found
@anandsubbu007 & @iamcorona you can add this lines to pubspec.yml, then run flutter pub get.
@anandsubbu007 & @iamcorona you can add this lines to
pubspec.yml, then runflutter pub get.
thanks! it work!
I just hit this as well, changing the analyzer made it work. Does anyone know why changing the analyzer resolves the issue?
analyzer 0.39.16 works for me
dependency_overrides:
analyzer: 0.39.16
My workaround for flutter 1.20 how generate .g files:
Didn't work for me
Didn't work for me neither, it runs indefinitely.
@AAverin , @BenevidesLecontes have you tried https://github.com/hivedb/hive/issues/387#issuecomment-663900752 ?
@AAverin yes. All I have in my pubspec
environment:
sdk: ">=2.6.0 <3.0.0"
dependencies:
flutter:
sdk: flutter
flutter_localizations:
sdk: flutter
flutter_cupertino_localizations: any
cupertino_icons: ^0.1.3
brasil_fields: ^0.4.0
flutter_bloc: ^6.0.1
equatable: ^1.2.4
rxdart: ^0.24.1
cpf_cnpj_validator: ^1.0.5
validators: ^2.0.1
keyboard_avoider: ^0.1.2
flutter_dotenv: ^2.1.0
dio: ^3.0.10
sliding_up_panel: ^1.0.2
local_auth: ^0.6.3+1
get_it: ^4.0.4
path_provider: any
hive: ^1.4.4
hive_flutter: 0.3.1
sliding_sheet: any
expandable: ^4.1.4
charts_flutter: any
mockito: ^4.1.1
auto_route: ^0.2.2
diacritic: ^0.1.1
url_launcher: ^5.5.0
jiffy: ^3.0.1
intl: ^0.16.1
flutter_page_indicator: ^0.0.3
flutter_keyboard_visibility: ^3.2.1
auto_size_text: ^2.1.0
uuid: ^2.2.0
flare_flutter: ^2.0.6
open_file: ^3.0.1
pretty_dio_logger: ^1.1.1
flutter_typeahead: ^1.8.8
flutter_rating_bar: ^3.0.1+1
cached_network_image: ^2.2.0+1
firebase_crashlytics: ^0.1.4+1
firebase_analytics: ^6.0.0
firebase_remote_config: ^0.4.0
firebase_dynamic_links: ^0.6.0
flutter_html: ^1.0.2
onesignal_flutter: ^2.6.1
package_info: ^0.4.3
device_apps: ^1.2.0
flutter_inappwebview: ^4.0.0+4
in_app_review: ^0.2.0+3
flutter_svg: ^0.18.1
build_resolvers: ^1.3.11
dart_style: ^1.3.6
dev_dependencies:
flutter_test:
sdk: flutter
hive_generator: ^0.7.1
build_runner: ^1.10.0
flutter_native_splash: ^0.1.9
auto_route_generator: ^0.2.2
dependency_overrides:
analyzer: 0.39.14
My workaround for flutter 1.20 how generate .g files:
- Create a new flutter project
- Copy dart files for hive model to a new project
- In dev dependencies in new project use build_runner: ^1.10.1 !
- Run flutter packages pub run build_runner build
- Copy generated model files back to my project
This workaround did the job for me
I also had to use the same workaround. It would seem that, if making a new project works, it is time to update to the latest project format.
I've been getting warnings during builds... On my todo list.
doesn't work with Flutter 1.20.3 after adding
dependency_overrides:
analyzer: 0.39.16
also 0.39.14
error message
Failed to precompile build_runner:build_runner:
../../../.pub-cache/hosted/pub.dartlang.org/build_resolvers-1.3.9/lib/src/resolver.dart:340:10: Error: Method not found: 'SummaryBuilder'.
return SummaryBuilder(sdkSources, sdk.context).build(
^^^^^^^^^^^^^^
The issue is related to Dart SDK / packages rather than hive.
I had the same issue with analyzer 0.39.14. It is working now with analyzer 0.38.16 and hive_generator 0.7.3 on Flutter 1.22.0.
Can also confirm that this now works correctly for me with the latest version of all applicable packages:
analyzer: 0.40.4build_runner: 1.10.3hive_generator: 0.8.1On the latest Flutter stable version (1.22.2, ref 84f3d28).
hive_generator: 0.8.1
Worked for me!
hive_generator: 0.8.1
worked for me Too!
updating the packages(i.e hive, hive_flutter) to latest version solved the infinite loop issue
Most helpful comment
I have faced with same issue when generating
json_serializable. I don't know how but it fixed by itself. I think the issue is related to analyzer package.Please could you try adding this lines to pubspec.yaml? Let me know if it worked.