StopQueryResponse.fromJson constructor

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

Implementation

factory StopQueryResponse.fromJson(Map<String, dynamic> json) {
  return StopQueryResponse(
    success: json['success'] as bool?,
  );
}