Player.fromJson constructor

Player.fromJson(
  1. String str
)

Decodes Player object from json string

Implementation

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