AppManifestParsedProperties.fromJson constructor

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

Implementation

factory AppManifestParsedProperties.fromJson(Map<String, dynamic> json) {
  return AppManifestParsedProperties(
    scope: json['scope'] as String,
  );
}