/* * This file is part of Stack Wallet. * * Copyright (c) 2023 Cypher Stack * All Rights Reserved. * The code is distributed under GPLv3 license, see LICENSE file for details. * Generated by Cypher Stack on 2023-05-26 * */ import 'package:stackwallet/models/paynym/paynym_account_lite.dart'; import 'package:stackwallet/models/paynym/paynym_code.dart'; class PaynymAccount { final String nymID; final String nymName; final bool segwit; final List codes; /// list of nymId final List followers; /// list of nymId final List following; PaynymCode get nonSegwitPaymentCode => codes.firstWhere((element) => !element.segwit); PaynymAccount( this.nymID, this.nymName, this.segwit, this.codes, this.followers, this.following, ); PaynymAccount.fromMap(Map map) : nymID = map["nymID"] as String, nymName = map["nymName"] as String, segwit = map["segwit"] as bool, codes = (map["codes"] as List) .map((e) => PaynymCode.fromMap(Map.from(e as Map))) .toList(), followers = (map["followers"] as List) .map((e) => PaynymAccountLite.fromMap(Map.from(e as Map))) .toList(), following = (map["following"] as List) .map((e) => PaynymAccountLite.fromMap(Map.from(e as Map))) .toList(); PaynymAccount copyWith({ String? nymID, String? nymName, bool? segwit, List? codes, List? followers, List? following, }) { return PaynymAccount( nymID ?? this.nymID, nymName ?? this.nymName, segwit ?? this.segwit, codes ?? this.codes, followers ?? this.followers, following ?? this.following, ); } Map toMap() => { "nymID": nymID, "nymName": nymName, "segwit": segwit, "codes": codes.map((e) => e.toMap()), "followers": followers.map((e) => e.toMap()), "following": followers.map((e) => e.toMap()), }; @override String toString() { return toMap().toString(); } }