Service.fromJson constructor

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

Implementation

factory Service.fromJson(Map<String, dynamic> json) => Service(
      derivationPath: json['derivationPath'],
      curve: json['curve'],
      hashAlgo: json['hashAlgo'],
    );