GTFBadgePosition.custom constructor
GTFBadgePosition.custom({})
Implementation
factory GTFBadgePosition.custom({
double? start,
double? end,
double? top,
double? bottom,
bool isCenter = false,
}) {
return GTFBadgePosition(
top: top, end: end, bottom: bottom, start: start, isCenter: isCenter);
}