BlockchainIdentity constructor

  1. @JsonSerializable.new(includeIfNull: false)
const BlockchainIdentity({
  1. String? name,
  2. String? avatar,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory BlockchainIdentity({
  String? name,
  String? avatar,
}) = _BlockchainIdentity;