UserContextVariable.fromJson constructor
Implementation
factory UserContextVariable.fromJson(Map<String, Object?> json) {
return UserContextVariable(
accountId: json[r'accountId'] as String? ?? '',
type: json[r'type'] as String? ?? '',
);
}