MethodInfo.fromJson constructor
MethodInfo.fromJson(
- Map<
String, dynamic> jsonSerialization, - SerializationManager serializationManager
Implementation
factory MethodInfo.fromJson(
Map<String, dynamic> jsonSerialization,
_i1.SerializationManager serializationManager,
) {
return MethodInfo(
id: serializationManager.deserialize<int?>(jsonSerialization['id']),
endpoint: serializationManager
.deserialize<String>(jsonSerialization['endpoint']),
method:
serializationManager.deserialize<String>(jsonSerialization['method']),
);
}