UpdateInlineCommentModelVersion.fromJson constructor
Implementation
factory UpdateInlineCommentModelVersion.fromJson(Map<String, Object?> json) {
return UpdateInlineCommentModelVersion(
number: (json[r'number'] as num?)?.toInt(),
message: json[r'message'] as String?,
);
}