UserContextVariable.fromJson constructor

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

Implementation

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