minShares property

  1. @ActualInt32()
int get minShares

Implementation

@ActualInt32() int get minShares => _minShares;
  1. @ActualInt32()
set minShares (int value)

Implementation

@ActualInt32() set minShares(int value) {
	if (value > 2147483647) {
		throw ArgumentError('minShares value cannot exceed 2147483647');
	}
	_minShares = value;
}