Review.fromJson constructor

Review.fromJson(
  1. Map json_
)

Implementation

Review.fromJson(core.Map json_)
    : this(
        comments: json_.containsKey('comments')
            ? json_['comments'] as core.String
            : null,
      );