getCcy method

  1. @override
String getCcy(
  1. BuildContext? context
)
override

Implementation

@override
String getCcy(BuildContext? context) {
  var state = getState(context!);
  if (state is InitializedPayState) {
    return state.ccy;
  } else {
    return '?';
  }
}