Line data Source code
1 : import 'package:freezed_annotation/freezed_annotation.dart';
2 :
3 : import '../../../types.dart';
4 :
5 : part 'sign_in_with_git_hub_action.freezed.dart';
6 : part 'sign_in_with_git_hub_action.g.dart';
7 :
8 : @freezed
9 : class SignInWithGitHubAction with _$SignInWithGitHubAction, ReduxAction {
10 25 : const SignInWithGitHubAction._();
11 : const factory SignInWithGitHubAction() = _SignInWithGitHubAction;
12 :
13 0 : factory SignInWithGitHubAction.fromJson(JsonMap json) =>
14 0 : _$SignInWithGitHubActionFromJson(json);
15 :
16 0 : @override
17 : String get typeName => 'SignInWithGitHubAction';
18 : }
|