fromJson static method

ManifestEntry fromJson(
  1. Map<String, dynamic> j
)

Parses a manifest entry.

Implementation

static ManifestEntry fromJson(Map<String, dynamic> j) =>
    ManifestEntry(j['path'] as String, (j['size'] as num).toInt());