$MethodInvocation.fromMessage constructor

$MethodInvocation.fromMessage(
  1. List message
)

Implementation

factory $MethodInvocation.fromMessage(List<dynamic> message) {
  return $MethodInvocation.fromAddresses(
    message[0] as int,
    message[1] as int,
    message[2] as int,
  );
}