propsTotalView method
Implementation
Widget propsTotalView(context, request) {
return Container(
width: MediaQuery.of(context).size.width - 216 - 32 - 15,
constraints: const BoxConstraints(
minHeight: 92,
),
child: Column(
children: [
Text(Strings.activeTotalTitle2.tr, style: contentBlack16),
Wrap(children: [
Text(Strings.dialogWithdrawMoney.trArgs([amount]), style: contentFF007Ared16)
]),
_btnView(context, request)
],
),
);
}