getClient static method

ApptiveGridClient getClient(
  1. BuildContext context, {
  2. bool listen = true,
})

Get direct Access to ApptiveGridClient

uses Provider to return the client

Implementation

static ApptiveGridClient getClient(
  BuildContext context, {
  bool listen = true,
}) {
  return Provider.of<ApptiveGridClient>(context, listen: listen);
}