AuthorDetails.fromJson constructor

AuthorDetails.fromJson(
  1. String str
)

Implementation

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