PlayerRating.fromJson constructor

PlayerRating.fromJson(
  1. String str
)

Decodes PlayerRating object from json string

Implementation

factory PlayerRating.fromJson(String str) =>
    PlayerRating.fromMap(json.decode(str));