JqlQueryToSanitize.fromJson constructor

JqlQueryToSanitize.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory JqlQueryToSanitize.fromJson(Map<String, Object?> json) {
  return JqlQueryToSanitize(
    accountId: json[r'accountId'] as String?,
    query: json[r'query'] as String? ?? '',
  );
}