commentApiFromJson function

CommentApi commentApiFromJson(
  1. String str
)

Implementation

CommentApi commentApiFromJson(final String str) =>
    CommentApi.fromJson(json.decode(str) as Map<String, dynamic>);