grow static method

Future<void> grow(
  1. String eventId,
  2. int growAmount
)

Submits the event data of the current player.

Implementation

static Future<void> grow(String eventId, int growAmount) async {
  await _channel.invokeMethod(
    'EventsClient.grow',
    <String, dynamic>{
      'eventId': eventId,
      'growAmount': growAmount,
    },
  );
}