Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## 8.0.0-alpha.2

- Generate models from Figma's REST API specification ([@donny-dont](https://github.com/donny-dont))
- Update to v0.36.0 of REST API specification ([@donny-dont](https://github.com/donny-dont))
- Update to v0.40.0 of REST API specification ([@donny-dont](https://github.com/donny-dont))
Comment thread
donny-dont marked this conversation as resolved.
- Add `Slot` support ([@donny-dont](https://github.com/donny-dont))
- Require `sdk: ^3.8.0`

Expand Down
6 changes: 6 additions & 0 deletions lib/src/client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,12 @@ class FigmaClient {
'/teams/$team/projects',
).then(TeamProjectsResponse.fromJson);

/// Retrieves the [project] metadata.
Future<ProjectMetaResponse> getProjectMeta(String project) => _getFigma(
apiVersion,
'/projects/$project/meta',
).then(ProjectMetaResponse.fromJson);
Comment thread
donny-dont marked this conversation as resolved.

/// Retrieves all project files specified by [project].
Future<ProjectFilesResponse> getProjectFiles(String project) => _getFigma(
apiVersion,
Expand Down
1 change: 1 addition & 0 deletions lib/src/models.dart
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ export 'models/progressive_blur_effect.dart';
export 'models/project.dart';
export 'models/project_file.dart';
export 'models/project_files_response.dart';
export 'models/project_meta_response.dart';
export 'models/prototype_device.dart';
export 'models/prototype_device_rotation.dart';
export 'models/prototype_device_type.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/action.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:equatable/equatable.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/action_type.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/after_timeout_trigger.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/annotations_trait.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

abstract mixin class AnnotationsTrait {}
2 changes: 1 addition & 1 deletion lib/src/models/arc_data.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/base_type_style.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'hyperlink.dart';
import 'paint.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/blend_mode.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/blur_effect.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';
import 'package:meta/meta.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/blur_effect_variables.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/blur_type.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/boolean_operation.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/boolean_operation_node.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/branch.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/canvas.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/client_meta.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

/// Positioning information of the comment.
///
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/color_stop.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/color_stop_variables.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/comment.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/comment_fragment.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/comment_pin_corner.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/comments_response.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/complex_strokes_trait.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

abstract mixin class ComplexStrokesTrait {}
2 changes: 1 addition & 1 deletion lib/src/models/component.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_node.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_properties_trait.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'component_property_definition.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_property.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_property_definition.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_property_type.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_property_variables.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_response.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_set.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_set_node.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_set_response.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_sets_meta.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/component_sets_response.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/components_meta.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/components_response.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/conditional_action.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/conditional_block.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/connector_endpoint.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/connector_line_type.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/connector_node.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/connector_stroke_cap.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/connector_text_background.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/constraint.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/constraint_type.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/containing_component_set.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/corner_radius_shape_traits.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'corner_trait.dart';
import 'default_shape_traits.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/corner_trait.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

abstract mixin class CornerTrait {
/// Radius of each corner if a single radius is set for all corners.
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/counter_axis_align_content.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/counter_axis_align_items.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/counter_axis_sizing_mode.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/cubic_bezier.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/default_shape_traits.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'complex_strokes_trait.dart';
import 'has_blend_mode_and_opacity_trait.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/dev_mode_status.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:json_annotation/json_annotation.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/dev_mode_status_update_payload.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/dev_resource.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/dev_status.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:equatable/equatable.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/dev_status_trait.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'dev_status.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/directional_transition.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
2 changes: 1 addition & 1 deletion lib/src/models/document.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from v0.36.0 of the Figma REST API specification
// Generated from v0.40.0 of the Figma REST API specification

import 'package:copy_with_extension/copy_with_extension.dart';
import 'package:json_annotation/json_annotation.dart';
Expand Down
Loading
Loading