PlatformTaxFee.fromJson constructor

PlatformTaxFee.fromJson(
  1. Object? json
)

Implementation

factory PlatformTaxFee.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return PlatformTaxFee(
    account: (map['account'] as String),
    id: (map['id'] as String),
    sourceTransaction: (map['source_transaction'] as String),
    type: (map['type'] as String),
  );
}