AccountTile constructor

const AccountTile(
  1. {Key? key,
  2. required String title,
  3. required String description}
)

Implementation

const AccountTile({
  Key? key,
  required this.title,
  required this.description,
}) : super(key: key);