AppManifestError.fromJson constructor
Implementation
factory AppManifestError.fromJson(Map<String, dynamic> json) {
return AppManifestError(
message: json['message'] as String,
critical: json['critical'] as int,
line: json['line'] as int,
column: json['column'] as int,
);
}