KeywordOperand.fromJson constructor

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

Implementation

factory KeywordOperand.fromJson(Map<String, Object?> json) {
  return KeywordOperand(
    keyword:
        KeywordOperandKeyword.fromValue(json[r'keyword'] as String? ?? ''),
  );
}