CustomContextVariable.fromJson constructor

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

Implementation

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