this repo has no description
at main 11 lines 367 B view raw
1import 'package:freezed_annotation/freezed_annotation.dart'; 2 3part 'profile_viewer.freezed.dart'; 4part 'profile_viewer.g.dart'; 5 6@freezed 7class ProfileViewer with _$ProfileViewer { 8 const factory ProfileViewer({String? following, String? followedBy}) = _ProfileViewer; 9 10 factory ProfileViewer.fromJson(Map<String, dynamic> json) => _$ProfileViewerFromJson(json); 11}