ids_material_sdk 2.5.0 copy "ids_material_sdk: ^2.5.0" to clipboard
ids_material_sdk: ^2.5.0 copied to clipboard

ui related stuff and logical data manager

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)
  });

}