fromJson static method

SetSemanticsResult fromJson(
  1. Map<String, dynamic> json
)

Deserializes this result from JSON.

Implementation

static SetSemanticsResult fromJson(Map<String, dynamic> json) {
  return SetSemanticsResult(json['changedState'] as bool);
}