UserInfo.fromRawJson constructor

UserInfo.fromRawJson(
  1. String str
)

Implementation

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