InitializeResponse.fromJson constructor
Creates an InitializeResponse from a JSON map.
Implementation
factory InitializeResponse.fromJson(Map<String, dynamic> json) => InitializeResponse(
result: json['result'] as bool? ?? false,
errorMessage: json['errorMessage'] as String? ?? '',
);