Datum.fromJson constructor

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

Implementation

factory Datum.fromJson(Map<String, dynamic> json) {
  return Datum(
    varCharValue: json['VarCharValue'] as String?,
  );
}