getInstrumentDetails method
Returns details of an instrument using id
Implementation
@override
Future<Instrument> getInstrumentDetails(String id) async {
//
Map<String, dynamic> responseMap = await apiBase.call(
RESTOption.get,
resource: _instruments + "/" + id,
headers: headers,
);
return Instrument.fromMap(responseMap);
}