DeveloperComment.fromJson constructor
DeveloperComment.fromJson(
- 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?,
);