UserAnonymousExpandable.fromJson constructor

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

Implementation

factory UserAnonymousExpandable.fromJson(Map<String, Object?> json) {
  return UserAnonymousExpandable(
    operations: json[r'operations'] as String?,
  );
}