ActionReloadProfile.fromJson constructor

ActionReloadProfile.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ActionReloadProfile.fromJson(Map<String, dynamic> json) => ActionReloadProfile(
    profileId: (json['ProfileId'] as String?) ?? '',
    userId: (json['UserId'] as String?) ?? '',
);