SolPayment.fromJson constructor

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

Implementation

factory SolPayment.fromJson(Map<String, dynamic> json) {
  return SolPayment(
      lamports: json["lamports"], destination: json["destination"]);
}