evolution property

  1. @ActualInt32()
int? get evolution

Implementation

@ActualInt32() int? get evolution => _evolution;
  1. @ActualInt32()
set evolution (int? value)

Implementation

@ActualInt32() set evolution(int? value) {
	if (value != null && value > 2147483647) {
		throw ArgumentError('evolution value cannot exceed 2147483647');
	}
	_evolution = value;
}