JqlQueriesToParse.fromJson constructor

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

Implementation

factory JqlQueriesToParse.fromJson(Map<String, Object?> json) {
  return JqlQueriesToParse(
    queries: (json[r'queries'] as List<Object?>?)
            ?.map((i) => i as String? ?? '')
            .toList() ??
        [],
  );
}