SentryTransactionInfo.fromJson constructor

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

Implementation

factory SentryTransactionInfo.fromJson(Map<String, dynamic> json) {
  return SentryTransactionInfo(
    json['source'],
  );
}