AppManifestError.fromJson constructor

AppManifestError.fromJson(
  1. Map<String, dynamic> json
)

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,
  );
}