Post.fromJson constructor

Post.fromJson(
  1. Map json_
)

Implementation

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