fromJson_updateValue static method

bool? fromJson_updateValue(
  1. Map<String, dynamic> json
)

Implementation

static bool? fromJson_updateValue(Map<String, dynamic> json) {
  return (json[r'updateValue'] == null)
      ? null
      : json[r'updateValue'] as bool?;
}