toFormData abstract method

Future<FormData?>? toFormData()

Converts the body data model to a FormData object.

This method should be implemented by subclasses to convert their specific data to a FormData object. It is designed to be used with requests that need to send data as FormData, such as file uploads.

Implementation

Future<FormData?>? toFormData();