VersionExpandable.fromJson constructor

VersionExpandable.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory VersionExpandable.fromJson(Map<String, Object?> json) {
  return VersionExpandable(
    content: json[r'content'] as String?,
    collaborators: json[r'collaborators'] as String?,
  );
}