getMeta method

Meta getMeta({
  1. Meta? handler,
})

Implementation

Meta getMeta({Meta? handler}) {
  final meta = handler ?? Meta();

  _meta?.call(meta);

  return meta;
}