Setting.fromJson constructor

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

Implementation

factory Setting.fromJson(Map<String, dynamic> json) {
  return Setting(
    displayFee: json['display_fee'] ?? '',
  );
}