deleteInstrument method
Delete a payment instrument
Implementation
@override
Future<bool> deleteInstrument(String id) async {
//
await apiBase.call(
RESTOption.delete,
resource: _instruments + "/" + id,
headers: headers,
);
return true;
}