ContentRatingsResult.fromJson constructor

ContentRatingsResult.fromJson(
  1. String str
)

Implementation

factory ContentRatingsResult.fromJson(String str) =>
    ContentRatingsResult.fromMap(
      json.decode(str) as Map<String, dynamic>,
    );