Security.fromJson constructor

Security.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory Security.fromJson(Map<String, dynamic> json) => Security(
      secureConnection: json["secure_connection"],
      hideErrors: json["hide_errors"],
    );