ADAMetadataLabelResponse.fromJson constructor

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

Implementation

factory ADAMetadataLabelResponse.fromJson(Map<String, dynamic> json) {
  return ADAMetadataLabelResponse(
    label: json['label'],
    cip10: json['cip10'],
    count: json['count'],
  );
}