QueryByLabelRequest.fromJson constructor

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

Implementation

factory QueryByLabelRequest.fromJson(Map<String, dynamic> json) {
  return QueryByLabelRequest(
    label: json.valueAsString<String?>('label', acceptCamelCase: true),
  );
}