euroToCent function

int euroToCent(
  1. num value
)

Implementation

int euroToCent(num value) {
  return (value * 100).round();
}