createServiceMapping function

Future<ServiceMapping> createServiceMapping(
  1. String mapping,
  2. String vendor
)

Implementation

Future<ServiceMapping> createServiceMapping(
    String mapping, String vendor) async {
  HttpOverrides.global = new MyHttpOverrides();
  final response = await http.post(
    Uri.parse('https://192.168.1.106:45455/api/ServiceMappingModels'),
    headers: <String, String>{
      'Content-Type': 'application/json; charset=UTF-8',
    },
    body: jsonEncode(<String, String>{'mapping': mapping, 'vendor': vendor}),
  );

  if (response.statusCode == 201) {
    // If the server did return a 201 CREATED response,
    // then parse the JSON.
    return ServiceMapping.fromJson(jsonDecode(response.body));
  } else {
    // If the server did not return a 201 CREATED response,
    // then throw an exception.
    throw Exception('Failed to create Service Mapping.');
  }
}