AppSpecContent.fromJson constructor

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

Implementation

factory AppSpecContent.fromJson(Map<String, dynamic> json) {
  return AppSpecContent(
    content: json['content'] as String?,
    sha256: json['sha256'] as String?,
  );
}