Contributor.fromJson constructor

Contributor.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Contributor.fromJson(Map<String, dynamic> json) {
  return Contributor(
    name: json['Name'] as String?,
    value: json['Value'] as int?,
  );
}