mergeFn method

Style Function(BuildContext context) mergeFn(
  1. Style other(
    1. BuildContext context
    )
)

Implementation

Style Function(BuildContext context) mergeFn(
  Style Function(BuildContext context) other,
) {
  return (BuildContext context) => fn(context).merge(other(context));
}