UserExpandable.fromJson constructor

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

Implementation

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