DeveloperComment.fromJson constructor

DeveloperComment.fromJson(
  1. Map json_
)

Implementation

DeveloperComment.fromJson(core.Map json_)
  : this(
      lastModified:
          json_.containsKey('lastModified')
              ? Timestamp.fromJson(
                json_['lastModified'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      text: json_['text'] as core.String?,
    );