Detail.fromRawJson constructor

Detail.fromRawJson(
  1. String str
)

Implementation

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