• Create assets/certification folder put the "

  • just right click and reName extension .cer to pem

  • By Akhilesh Goswami check out this video https://youtu.be/7ZrpFIZ5J1Y

    add in pubspec.yaml add this line assets:

    • assets/certification/
  • Full runnable sample: see example/example.dart

  • Example

import 'dart:convert'; import 'package:http/http.dart' as http; import 'package:ssl_pining_checking/ssl_pining_checking.dart';

late http.Client client;

@override void onInit() async { client = await SSLPiningCheck( certificateFilePath: 'assets/certification/client.pem', ).getSSLPiningClient();

super.onInit();

}

Calling Api through client

final http.Response response = await client.post( Uri.parse(url), headers: <String, String>{ 'Content-Type': 'application/json', 'Authorization': 'Token $token', }, body: json.encode(data), );

Close client when done (e.g. in dispose):

client.close();