textToImage method
Implementation
Future<Map<String, dynamic>> textToImage(
RealtimeText2ImageSchema schema) async {
final endpoint = '${realtimeBaseUrl}text2img';
return await _post(endpoint, data: schema.toJson());
}
Future<Map<String, dynamic>> textToImage(
RealtimeText2ImageSchema schema) async {
final endpoint = '${realtimeBaseUrl}text2img';
return await _post(endpoint, data: schema.toJson());
}