TokenVpaDetails constructor

  1. @JsonSerializable.new(includeIfNull: false)
const TokenVpaDetails({
  1. String? username,
  2. String? handle,
  3. String? name,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory TokenVpaDetails({
  String? username,
  String? handle,
  String? name,
}) = _TokenVpaDetails;