ids_material_sdk 2.6.0
ids_material_sdk: ^2.6.0 copied to clipboard
The IDS Material SDK is designed to streamline development for Flutter developers, allowing them to focus on product innovation rather than spending time on networking API calls or UI components. It s [...]
example/main.dart
import 'package:ids_material_sdk/ids_api_manager.dart';
import 'package:ids_material_sdk/utilities/ids_helper.dart';
void main() {
var request = {"UserName":"ddd","Password":"ddd"};
final Future<Map<String, dynamic>> apiResponse =
IDSApiManager().uploadFormData("http://ids.com/api/v1/login", request, "local-url-path-of-file", {"Connection":"keep-alive"});
apiResponse.then((response) => {
IDSHelper.debugJSON(response)
});
}