You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cake_wallet/lib/src/screens/transaction_details/blockexplorer_list_item.dart

9 lines
340 B

import 'package:flutter/material.dart';
import 'package:cake_wallet/src/screens/transaction_details/transaction_details_list_item.dart';
class BlockExplorerListItem extends TransactionDetailsListItem {
BlockExplorerListItem({String title, String value, this.onTap})
: super(title: title, value: value);
final Function() onTap;
}