createConversion method

Future<Map> createConversion(
  1. String token,
  2. String? buyAmount,
  3. String buyCurrency,
  4. String? conversionDate,
  5. String? quoteId,
  6. String reason,
  7. String requestId,
  8. String? sellAmount,
  9. String sellCurrency,
  10. bool termAgreement,
)

Implementation

Future<Map> createConversion(
    String token,
    String? buyAmount,
    String buyCurrency,
    String? conversionDate,
    String? quoteId,
    String reason,
    String requestId,
    String? sellAmount,
    String sellCurrency,
    bool termAgreement) {
  throw UnimplementedError("Create Conversion has not been implemented");
}