added null safety for llc

This commit is contained in:
Deven Joshi
2021-04-08 15:03:16 +05:30
parent 3a5308a9c0
commit c80fc0a6b4
41 changed files with 1222 additions and 1202 deletions
@@ -17,13 +17,13 @@ class Command {
_$CommandFromJson(json);
/// The name of the command
final String name;
final String? name;
/// The description explaining the command
final String description;
final String? description;
/// The arguments of the command
final String args;
final String? args;
/// Serialize to json
Map<String, dynamic> toJson() => _$CommandToJson(this);